blob: 821262e0847c7692e7adbf2e79bb1e12ea83c026 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
module="sbull"
device="sbull"
# invoke rmmod with all arguments we got
rmmod $module $* || exit 1
# Remove stale nodes
rm -f /dev/${device}[a-d]* /dev/${device}
|