2015-12-03 23:08:02 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (C) 2015 OpenWrt.org
|
|
|
|
#
|
|
|
|
|
|
|
|
. /lib/arc.sh
|
2015-12-11 15:26:06 +00:00
|
|
|
. /lib/functions/uci-defaults.sh
|
2015-12-03 23:08:02 +00:00
|
|
|
|
|
|
|
board_config_update
|
|
|
|
|
|
|
|
case "$( arc_board_name )" in
|
|
|
|
"arc-sdp"*)
|
|
|
|
ucidef_set_interface_lan "eth0" "dhcp"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
board_config_flush
|
|
|
|
|
|
|
|
exit 0
|