18 lines
172 B
Text
18 lines
172 B
Text
|
#!/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
|