mirror of
https://gitlab.com/etherlab.org/ethercat.git
synced 2026-02-06 20:01:44 +08:00
17 lines
184 B
Bash
Executable File
17 lines
184 B
Bash
Executable File
#!/bin/sh
|
|
module="msr_modul"
|
|
device="msr"
|
|
|
|
# invoke rmmod with all arguments we got
|
|
/sbin/rmmod $module $* || exit 1
|
|
|
|
# Remove stale nodes
|
|
|
|
rm -f /dev/${device} /dev/${device}0
|
|
|
|
|
|
|
|
|
|
|
|
|