mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-07-13 03:27:05 +08:00
19 lines
216 B
Plaintext
19 lines
216 B
Plaintext
![]() |
#!/bin/sh
|
||
|
#
|
||
|
# Copyright (C) 2015 OpenWrt.org
|
||
|
#
|
||
|
|
||
|
. /lib/functions/uci-defaults.sh
|
||
|
|
||
|
board_config_update
|
||
|
|
||
|
case "$(board_name)" in
|
||
|
"arc-sdp"*)
|
||
|
ucidef_set_interface_lan "eth0" "dhcp"
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
board_config_flush
|
||
|
|
||
|
exit 0
|