realview: set LAN interface to be in DHCP

Realview is mostly used as a QEMU development platform, which will provide a
built-in DHCP server to NAT or bridge the connection outside of the emulated
environment.

Signed-off-by: Florian Fainelli <florian@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@41495 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
Florian Fainelli 2014-07-03 17:19:10 +00:00
parent 051287907a
commit f1961ea6ec

View File

@ -0,0 +1,10 @@
#!/bin/sh
. /lib/functions/uci-defaults.sh
ucidef_set_interface_loopback
ucidef_set_interface_raw "lan" "eth0"
uci batch <<EOF
set network.lan.proto='dhcp'
EOF