21 lines
335 B
Plaintext
21 lines
335 B
Plaintext
|
#!/bin/sh
|
||
|
module="scull"
|
||
|
device="scull"
|
||
|
|
||
|
# invoke rmmod with all arguments we got
|
||
|
/sbin/rmmod $module $* || exit 1
|
||
|
|
||
|
# Remove stale nodes
|
||
|
|
||
|
rm -f /dev/${device} /dev/${device}[0-3]
|
||
|
rm -f /dev/${device}priv
|
||
|
rm -f /dev/${device}pipe /dev/${device}pipe[0-3]
|
||
|
rm -f /dev/${device}single
|
||
|
rm -f /dev/${device}uid
|
||
|
rm -f /dev/${device}wuid
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|