mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 14:23:38 +00:00
14 lines
136 B
Bash
Executable File
14 lines
136 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
STOP=60
|
|
|
|
stop() {
|
|
. /lib/functions.sh
|
|
|
|
case $(board_name) in
|
|
hiwifi,c526a)
|
|
rmmod mt7615e
|
|
;;
|
|
esac
|
|
}
|