#!/bin/sh -e

# Remove any symlinks we may have set.
#
if [ "$1" = configure ]; then
	for link in /lib/firmware/*/bcm43xx*; do
		test -h $link && rm -f $link
	done
fi
