mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-14 00:40:12 +00:00
16 lines
160 B
Plaintext
16 lines
160 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
. /lib/functions/uci-defaults.sh
|
||
|
|
||
|
board=$(board_name)
|
||
|
boardname="${board##*,}"
|
||
|
|
||
|
board_config_update
|
||
|
|
||
|
case $board in
|
||
|
esac
|
||
|
|
||
|
board_config_flush
|
||
|
|
||
|
exit 0
|