mcs814x: switch from uci-defaults to board.d
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> SVN-Revision: 47761
This commit is contained in:
parent
8298dfef5c
commit
ba8a44995f
3 changed files with 17 additions and 24 deletions
8
target/linux/mcs814x/base-files/etc/uci-defaults/01_leds → target/linux/mcs814x/base-files/etc/board.d/01_leds
Normal file → Executable file
8
target/linux/mcs814x/base-files/etc/uci-defaults/01_leds → target/linux/mcs814x/base-files/etc/board.d/01_leds
Normal file → Executable file
|
@ -1,11 +1,13 @@
|
||||||
#!/bin/sh
|
#!/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
|
. /lib/mcs814x.sh
|
||||||
|
|
||||||
|
board_config_update
|
||||||
|
|
||||||
board=$(mcs814x_board_name)
|
board=$(mcs814x_board_name)
|
||||||
|
|
||||||
case "$board" in
|
case "$board" in
|
||||||
|
@ -21,6 +23,6 @@ rbt-832)
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
ucidef_commit_leds
|
board_config_flush
|
||||||
|
|
||||||
exit 0
|
exit 0
|
12
target/linux/mcs814x/base-files/etc/board.d/02_network
Executable file
12
target/linux/mcs814x/base-files/etc/board.d/02_network
Executable file
|
@ -0,0 +1,12 @@
|
||||||
|
#!/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
|
|
@ -1,21 +0,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
|
|
Loading…
Reference in a new issue