diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-12-03 23:07:38 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-12-03 23:07:38 +0000 |
commit | 81f1ccbf967a211449b0726ff476f079e3df1bcb (patch) | |
tree | 9abe6144b5d0fcf49edee9d26b4a631aea5178f4 /target/linux/at91/base-files/etc/board.d | |
parent | adbe47380e630a65a894bf53f73efd9d58a6195e (diff) | |
download | upstream-81f1ccbf967a211449b0726ff476f079e3df1bcb.tar.gz upstream-81f1ccbf967a211449b0726ff476f079e3df1bcb.tar.bz2 upstream-81f1ccbf967a211449b0726ff476f079e3df1bcb.zip |
at91: switch from uci-defaults to board.d
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
SVN-Revision: 47740
Diffstat (limited to 'target/linux/at91/base-files/etc/board.d')
-rwxr-xr-x | target/linux/at91/base-files/etc/board.d/00_model | 13 | ||||
-rwxr-xr-x | target/linux/at91/base-files/etc/board.d/02_network | 25 |
2 files changed, 38 insertions, 0 deletions
diff --git a/target/linux/at91/base-files/etc/board.d/00_model b/target/linux/at91/base-files/etc/board.d/00_model new file mode 100755 index 0000000000..ec07709e0c --- /dev/null +++ b/target/linux/at91/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 "$(cat /tmp/sysinfo/board_name)" +ucidef_set_model_name "$(cat /tmp/sysinfo/model)" + +board_config_flush + +exit 0 diff --git a/target/linux/at91/base-files/etc/board.d/02_network b/target/linux/at91/base-files/etc/board.d/02_network new file mode 100755 index 0000000000..fc3e112f02 --- /dev/null +++ b/target/linux/at91/base-files/etc/board.d/02_network @@ -0,0 +1,25 @@ +#!/bin/sh +# +# Copyright (C) 2014-2015 OpenWrt.org +# + +. /lib/functions/uci-defaults-new.sh +. /lib/at91.sh + +board_config_update + +case "$(at91_board_name)" in + +sama5d3_xplained) + ucidef_set_interfaces_lan_wan "eth0" "eth1" + ;; + +*) + ucidef_set_interface_lan "eth0" + ;; + +esac + +board_config_flush + +exit 0 |