Procházet zdrojové kódy

Revert "ar71xx: migrate led and network setup to board detection framework"

The board detect code needs more fixes in order to work properly.

Signed-off-by: Jo-Philipp Wich <[email protected]>

SVN-Revision: 47641
Jo-Philipp Wich před 10 roky
rodič
revize
3fac6dde85

+ 3 - 5
target/linux/ar71xx/base-files/etc/board.d/01_leds → target/linux/ar71xx/base-files/etc/uci-defaults/01_leds

@@ -1,13 +1,11 @@
 #!/bin/sh
 #!/bin/sh
 #
 #
-# Copyright (C) 2011-2015 OpenWrt.org
+# Copyright (C) 2011 OpenWrt.org
 #
 #
 
 
-. /lib/functions/uci-defaults-new.sh
+. /lib/functions/uci-defaults.sh
 . /lib/ar71xx.sh
 . /lib/ar71xx.sh
 
 
-board_config_update
-
 board=$(ar71xx_board_name)
 board=$(ar71xx_board_name)
 
 
 case "$board" in
 case "$board" in
@@ -669,6 +667,6 @@ zcn-1523h-5)
 	;;
 	;;
 esac
 esac
 
 
-board_config_flush
+ucidef_commit_leds
 
 
 exit 0
 exit 0

+ 7 - 6
target/linux/ar71xx/base-files/etc/board.d/02_network → target/linux/ar71xx/base-files/etc/uci-defaults/02_network

@@ -1,18 +1,19 @@
 #!/bin/sh
 #!/bin/sh
 #
 #
-# Copyright (C) 2011-2015 OpenWrt.org
+# Copyright (C) 2011 OpenWrt.org
 #
 #
 
 
-. /lib/functions/uci-defaults-new.sh
-. /lib/ar71xx.sh
+[ -e /etc/config/network ] && exit 0
+
+touch /etc/config/network
 
 
-board_config_update
+. /lib/functions/uci-defaults.sh
+. /lib/ar71xx.sh
 
 
 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 |\
@@ -536,6 +537,6 @@ wndr3700)
 	;;
 	;;
 esac
 esac
 
 
-board_config_flush
+uci commit network
 
 
 exit 0
 exit 0