netlogic: switch from uci-defaults to board.d
authorjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Thu, 3 Dec 2015 22:46:54 +0000 (22:46 +0000)
committerjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Thu, 3 Dec 2015 22:46:54 +0000 (22:46 +0000)
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@47736 3c298f89-4303-0410-b956-a3cf2f4a3e73

target/linux/netlogic/base-files/etc/board.d/00_model [new file with mode: 0755]
target/linux/netlogic/base-files/etc/board.d/02_network [new file with mode: 0755]
target/linux/netlogic/base-files/etc/uci-defaults/02_network [deleted file]

diff --git a/target/linux/netlogic/base-files/etc/board.d/00_model b/target/linux/netlogic/base-files/etc/board.d/00_model
new file mode 100755 (executable)
index 0000000..ec07709
--- /dev/null
@@ -0,0 +1,13 @@
+#!/bin/sh
+# Copyright (C) 2015 OpenWrt.org
+
+. /lib/functions/uci-defaults-new.sh
+
+board_config_update
+
+ucidef_set_board_id "$(cat /tmp/sysinfo/board_name)"
+ucidef_set_model_name "$(cat /tmp/sysinfo/model)"
+
+board_config_flush
+
+exit 0
diff --git a/target/linux/netlogic/base-files/etc/board.d/02_network b/target/linux/netlogic/base-files/etc/board.d/02_network
new file mode 100755 (executable)
index 0000000..1ca1214
--- /dev/null
@@ -0,0 +1,24 @@
+#!/bin/sh
+#
+# Copyright (C) 2014 OpenWrt.org
+#
+
+. /lib/functions/uci-defaults-now.sh
+. /lib/netlogic.sh
+
+board_config_update
+
+case "$board_name" in
+"xlp-evp" |\
+"xlp-fvp" |\
+"xlp-gvp" |\
+"xlp-svp" |\
+*)
+       ucidef_set_interface_lan "eth0"
+       ;;
+
+esac
+
+board_config_flush
+
+exit 0
diff --git a/target/linux/netlogic/base-files/etc/uci-defaults/02_network b/target/linux/netlogic/base-files/etc/uci-defaults/02_network
deleted file mode 100644 (file)
index e271e17..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-#
-# Copyright (C) 2014 OpenWrt.org
-#
-
-[ -e /etc/config/network ] && exit 0
-
-touch /etc/config/network
-
-. /lib/functions/uci-defaults.sh
-. /lib/netlogic.sh
-
-ucidef_set_interface_loopback
-
-case "$board_name" in
-"xlp-evp" |\
-"xlp-fvp" |\
-"xlp-gvp" |\
-"xlp-svp" |\
-*)
-       ucidef_set_interface_lan "eth0"
-       ;;
-
-esac
-
-uci commit network
-
-exit 0