summaryrefslogtreecommitdiff
path: root/build_tools/uninstall-modules
blob: d70255c67dc8d89c9116b4747d469af1dd83ed00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/sh
# uninstall-modules-sh
#
# Remove all the modules passed in on the command line from the modules
# directory.  This script is called by the makefile.
#
# USAGE: uninstall-modules-sh <modules dir> modules to delete ...

KERNEL_MODULES_DIR=$1
shift
MODULES=$@

function usage {
	echo "$0: Used to delete kernel modules from the modules directory."
}

if [ -z "$KERNEL_MODULES_DIR" ]; then
	echo "Missing kernel module directory."
	usage
	exit 1;
fi

if [ -z "$MODULES" ]; then
	echo "Missing one or more modules to delete."
	usage
	exit 1;
fi
for mod in $MODULES; do 
	for file in `cat $KERNEL_MODULES_DIR/modules.dep | cut -d : -f 1 | grep $mod`; do
		if [ -e "$file" ]; then
			echo "Deleting $file."
			rm -f $file
		fi
	done
done
exit 0