mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-28 17:48:58 +00:00
20 lines
211 B
Plaintext
20 lines
211 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
. /lib/functions.sh
|
||
|
. /lib/apm821xx.sh
|
||
|
|
||
|
BOARD=$(apm821xx_board_name)
|
||
|
|
||
|
if [ $BOARD == "wndr4700" ]; then
|
||
|
case "$ACTION" in
|
||
|
released)
|
||
|
rmmod dwc2
|
||
|
;;
|
||
|
pressed)
|
||
|
modprobe dwc2
|
||
|
;;
|
||
|
esac
|
||
|
fi
|
||
|
|
||
|
return 0
|