Skip to content
Snippets Groups Projects
Commit ba8a4499 authored by Jo-Philipp Wich's avatar Jo-Philipp Wich
Browse files

mcs814x: switch from uci-defaults to board.d


Signed-off-by: default avatarJo-Philipp Wich <jow@openwrt.org>

SVN-Revision: 47761
parent 8298dfef
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
#
# Copyright (C) 2012 OpenWrt.org
# Copyright (C) 2012-2015 OpenWrt.org
#
. /lib/functions/uci-defaults.sh
. /lib/functions/uci-defaults-new.sh
. /lib/mcs814x.sh
board_config_update
board=$(mcs814x_board_name)
case "$board" in
......@@ -21,6 +23,6 @@ rbt-832)
;;
esac
ucidef_commit_leds
board_config_flush
exit 0
#!/bin/sh
#
# Copyright (C) 2015 OpenWrt.org
#
. /lib/functions/uci-defaults-new.sh
board_config_update
ucidef_set_interface_lan "eth0"
board_config_flush
exit 0
# Copyright (C) 2012 OpenWrt.org
config interface loopback
option ifname lo
option proto static
option ipaddr 127.0.0.1
option netmask 255.0.0.0
config interface lan
option ifname eth0
option proto static
option ipaddr 192.168.1.1
option netmask 255.255.255.0
option ip6assign 60
config interface wan6
option ifname eth0
option proto dhcpv6
config globals globals
option ula_prefix auto
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment