1
1
Files
zyxel-vmg8825_b50b-cfw/target/linux/brcm963xx/base-files-502L07/etc/hp_wrapper.sh
T
2026-04-17 18:33:03 +02:00

17 lines
291 B
Bash
Executable File

#!/bin/sh
case "$ACTION" in
"add")
/sbin/mdev $1
if [ -x "/sbin/hotplug" ]; then
/sbin/hotplug $1
fi
;;
"remove")
if [ -x "/sbin/hotplug" ]; then
/sbin/hotplug $1
fi
/sbin/mdev $1
;;
esac