| Linux kernel & device driver programming |
| [ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] |
1 #!/bin/sh
2 module="scullp"
3 device="scullp"
4
5 # invoke rmmod with all arguments we got
6 /sbin/rmmod $module $* || exit 1
7
8 # remove nodes
9 rm -f /dev/${device}[0-3] /dev/${device}
10
11 exit 0
| This page was automatically generated by the LXR engine. |