summaryrefslogtreecommitdiffstats
path: root/target/linux/mvebu
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2015-11-20 23:59:31 +0000
committerJo-Philipp Wich <jow@openwrt.org>2015-11-20 23:59:31 +0000
commite20b68924968014662e901f6cba64fa0f8199e74 (patch)
treeb3c8e8377c867db4fa6fd76c264f2f32541f7b69 /target/linux/mvebu
parent8e79f25991cfc6d06f7cba7333693401f2d813de (diff)
downloadmaster-31e0f0ae-e20b68924968014662e901f6cba64fa0f8199e74.tar.gz
master-31e0f0ae-e20b68924968014662e901f6cba64fa0f8199e74.tar.bz2
master-31e0f0ae-e20b68924968014662e901f6cba64fa0f8199e74.zip
mvebu: migrate led and network setup to board detection framework
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> SVN-Revision: 47541
Diffstat (limited to 'target/linux/mvebu')
-rwxr-xr-x[-rw-r--r--]target/linux/mvebu/base-files/etc/board.d/01_leds (renamed from target/linux/mvebu/base-files/etc/uci-defaults/01_leds)8
-rwxr-xr-x[-rw-r--r--]target/linux/mvebu/base-files/etc/board.d/02_network (renamed from target/linux/mvebu/base-files/etc/uci-defaults/02_network)10
2 files changed, 9 insertions, 9 deletions
diff --git a/target/linux/mvebu/base-files/etc/uci-defaults/01_leds b/target/linux/mvebu/base-files/etc/board.d/01_leds
index 612f949da4..eb245d85ae 100644..100755
--- a/target/linux/mvebu/base-files/etc/uci-defaults/01_leds
+++ b/target/linux/mvebu/base-files/etc/board.d/01_leds
@@ -1,11 +1,13 @@
#!/bin/sh
#
-# Copyright (C) 2014 OpenWrt.org
+# Copyright (C) 2014-2015 OpenWrt.org
#
-. /lib/functions/uci-defaults.sh
+. /lib/functions/uci-defaults-new.sh
. /lib/mvebu.sh
+board_config_update
+
board=$(mvebu_board_name)
case "$board" in
@@ -32,6 +34,6 @@ armada-xp-linksys-mamba)
esac
-ucidef_commit_leds
+board_config_flush
exit 0
diff --git a/target/linux/mvebu/base-files/etc/uci-defaults/02_network b/target/linux/mvebu/base-files/etc/board.d/02_network
index d1da59fb48..803a4dc768 100644..100755
--- a/target/linux/mvebu/base-files/etc/uci-defaults/02_network
+++ b/target/linux/mvebu/base-files/etc/board.d/02_network
@@ -3,13 +3,11 @@
# Copyright (C) 2014-2015 OpenWrt.org
#
-[ -e /etc/config/network ] && exit 0
-
-touch /etc/config/network
-
-. /lib/functions/uci-defaults.sh
+. /lib/functions/uci-defaults-new.sh
. /lib/mvebu.sh
+board_config_update
+
ucidef_set_interface_loopback
board=$(mvebu_board_name)
@@ -41,6 +39,6 @@ armada-xp-gp)
;;
esac
-uci commit network
+board_config_flush
exit 0