summaryrefslogtreecommitdiffstats
path: root/target/linux/malta
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2015-12-03 23:07:46 +0000
committerJo-Philipp Wich <jow@openwrt.org>2015-12-03 23:07:46 +0000
commit60dbff6a5fc78d1f13ebcf8c2e96d7de2274e24d (patch)
tree0e35299ca9da105082260346206e11f10d6d8c29 /target/linux/malta
parent81f1ccbf967a211449b0726ff476f079e3df1bcb (diff)
downloadmaster-31e0f0ae-60dbff6a5fc78d1f13ebcf8c2e96d7de2274e24d.tar.gz
master-31e0f0ae-60dbff6a5fc78d1f13ebcf8c2e96d7de2274e24d.tar.bz2
master-31e0f0ae-60dbff6a5fc78d1f13ebcf8c2e96d7de2274e24d.zip
malta: switch from uci-defaults to board.d
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> SVN-Revision: 47741
Diffstat (limited to 'target/linux/malta')
-rwxr-xr-xtarget/linux/malta/base-files/etc/board.d/00_model13
-rwxr-xr-x[-rw-r--r--]target/linux/malta/base-files/etc/board.d/02_network (renamed from target/linux/malta/base-files/etc/uci-defaults/02-network)9
2 files changed, 20 insertions, 2 deletions
diff --git a/target/linux/malta/base-files/etc/board.d/00_model b/target/linux/malta/base-files/etc/board.d/00_model
new file mode 100755
index 0000000000..54f4d9a7d0
--- /dev/null
+++ b/target/linux/malta/base-files/etc/board.d/00_model
@@ -0,0 +1,13 @@
+#!/bin/sh
+# Copyright (C) 2015 OpenWrt.org
+
+. /lib/functions/uci-defaults-new.sh
+
+board_config_update
+
+ucidef_set_board_id "malta"
+ucidef_set_model_name "MIPS Malta"
+
+board_config_flush
+
+exit 0
diff --git a/target/linux/malta/base-files/etc/uci-defaults/02-network b/target/linux/malta/base-files/etc/board.d/02_network
index 7b3e22540e..394d12b304 100644..100755
--- a/target/linux/malta/base-files/etc/uci-defaults/02-network
+++ b/target/linux/malta/base-files/etc/board.d/02_network
@@ -1,9 +1,14 @@
#!/bin/sh
-. /lib/functions/uci-defaults.sh
+. /lib/functions/uci-defaults-new.sh
+
+board_config_udpate
-ucidef_set_interface_loopback
ucidef_set_interface_wan "eth0"
if [ -d "/sys/class/net/eth1" ]; then
ucidef_set_interface_lan "eth1"
fi
+
+board_config_flush
+
+exit 0