aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/malta/base-files/etc/board.d
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
commit9dba0fd546ae3bcbd0c5f5c16c26ad29f7820036 (patch)
treea58dd23ebf0a7d229ab03a77a908a628685674f2 /target/linux/malta/base-files/etc/board.d
parent54904b87a45e8848d8f2a2c4d3732619ccb25998 (diff)
downloadmaster-187ad058-9dba0fd546ae3bcbd0c5f5c16c26ad29f7820036.tar.gz
master-187ad058-9dba0fd546ae3bcbd0c5f5c16c26ad29f7820036.tar.bz2
master-187ad058-9dba0fd546ae3bcbd0c5f5c16c26ad29f7820036.zip
malta: switch from uci-defaults to board.d
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@47741 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/malta/base-files/etc/board.d')
-rwxr-xr-xtarget/linux/malta/base-files/etc/board.d/00_model13
-rwxr-xr-xtarget/linux/malta/base-files/etc/board.d/02_network14
2 files changed, 27 insertions, 0 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/board.d/02_network b/target/linux/malta/base-files/etc/board.d/02_network
new file mode 100755
index 0000000000..394d12b304
--- /dev/null
+++ b/target/linux/malta/base-files/etc/board.d/02_network
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+. /lib/functions/uci-defaults-new.sh
+
+board_config_udpate
+
+ucidef_set_interface_wan "eth0"
+if [ -d "/sys/class/net/eth1" ]; then
+ ucidef_set_interface_lan "eth1"
+fi
+
+board_config_flush
+
+exit 0