mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-21 01:41:41 +00:00
18 lines
172 B
Plaintext
18 lines
172 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
. /lib/functions/uci-defaults.sh
|
||
|
. /lib/apm821xx.sh
|
||
|
|
||
|
board_config_update
|
||
|
|
||
|
board=$(apm821xx_board_name)
|
||
|
|
||
|
case "$board" in
|
||
|
*)
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
board_config_flush
|
||
|
|
||
|
exit 0
|