blob: 9b6a5d2ae444bea85940f05ea62f29b083d50c03 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
module="scullp"
device="scullp"
# invoke rmmod with all arguments we got
rmmod $module $* || exit 1
# remove nodes
rm -f /dev/${device}[0-3] /dev/${device}
exit 0
|