mirror of https://github.com/hak5/openwrt-owl.git
ar71xx: migrate led and network setup to board detection framework
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> SVN-Revision: 47534owl
parent
4afee42560
commit
ade2c06d61
8
target/linux/ar71xx/base-files/etc/uci-defaults/01_leds → target/linux/ar71xx/base-files/etc/board.d/01_leds
Normal file → Executable file
8
target/linux/ar71xx/base-files/etc/uci-defaults/01_leds → target/linux/ar71xx/base-files/etc/board.d/01_leds
Normal file → Executable file
|
@ -1,11 +1,13 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
#
|
#
|
||||||
# Copyright (C) 2011 OpenWrt.org
|
# Copyright (C) 2011-2015 OpenWrt.org
|
||||||
#
|
#
|
||||||
|
|
||||||
. /lib/functions/uci-defaults.sh
|
. /lib/functions/uci-defaults-new.sh
|
||||||
. /lib/ar71xx.sh
|
. /lib/ar71xx.sh
|
||||||
|
|
||||||
|
board_config_update
|
||||||
|
|
||||||
board=$(ar71xx_board_name)
|
board=$(ar71xx_board_name)
|
||||||
|
|
||||||
case "$board" in
|
case "$board" in
|
||||||
|
@ -651,6 +653,6 @@ zcn-1523h-5)
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
ucidef_commit_leds
|
board_config_flush
|
||||||
|
|
||||||
exit 0
|
exit 0
|
13
target/linux/ar71xx/base-files/etc/uci-defaults/02_network → target/linux/ar71xx/base-files/etc/board.d/02_network
Normal file → Executable file
13
target/linux/ar71xx/base-files/etc/uci-defaults/02_network → target/linux/ar71xx/base-files/etc/board.d/02_network
Normal file → Executable file
|
@ -1,19 +1,18 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
#
|
#
|
||||||
# Copyright (C) 2011 OpenWrt.org
|
# Copyright (C) 2011-2015 OpenWrt.org
|
||||||
#
|
#
|
||||||
|
|
||||||
[ -e /etc/config/network ] && exit 0
|
. /lib/functions/uci-defaults-new.sh
|
||||||
|
|
||||||
touch /etc/config/network
|
|
||||||
|
|
||||||
. /lib/functions/uci-defaults.sh
|
|
||||||
. /lib/ar71xx.sh
|
. /lib/ar71xx.sh
|
||||||
|
|
||||||
|
board_config_update
|
||||||
|
|
||||||
ucidef_set_interface_loopback
|
ucidef_set_interface_loopback
|
||||||
|
|
||||||
board=$(ar71xx_board_name)
|
board=$(ar71xx_board_name)
|
||||||
|
|
||||||
|
|
||||||
case "$board" in
|
case "$board" in
|
||||||
all0315n |\
|
all0315n |\
|
||||||
all0258n |\
|
all0258n |\
|
||||||
|
@ -527,6 +526,6 @@ wndr3700)
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
uci commit network
|
board_config_flush
|
||||||
|
|
||||||
exit 0
|
exit 0
|
Loading…
Reference in New Issue