19 lines
285 B
Text
19 lines
285 B
Text
|
#!/bin/sh
|
||
|
#
|
||
|
# Copyright (C) 2017 OpenWrt.org
|
||
|
#
|
||
|
# This is free software, licensed under the GNU General Public License v2.
|
||
|
# See /LICENSE for more information.
|
||
|
#
|
||
|
|
||
|
. /lib/functions/uci-defaults.sh
|
||
|
|
||
|
|
||
|
board_config_update
|
||
|
|
||
|
ucidef_set_interface_lan 'eth0' 'dhcp'
|
||
|
|
||
|
board_config_flush
|
||
|
|
||
|
exit 0
|