[source] ar71xx: add user-space support for the OpenMesh A40

LEDE Commits lede-commits at lists.infradead.org
Tue Feb 14 03:48:36 PST 2017


blogic pushed a commit to source.git, branch master:
https://git.lede-project.org/640f9158e2bd49e0ee61d9db3eaa77dc8882aae3

commit 640f9158e2bd49e0ee61d9db3eaa77dc8882aae3
Author: Sven Eckelmann <sven.eckelmann at open-mesh.com>
AuthorDate: Fri Sep 23 09:36:43 2016 +0200

    ar71xx: add user-space support for the OpenMesh A40
    
    Signed-off-by: Sven Eckelmann <sven.eckelmann at open-mesh.com>
---
 target/linux/ar71xx/base-files/etc/board.d/01_leds    | 4 ++++
 target/linux/ar71xx/base-files/etc/board.d/02_network | 1 +
 target/linux/ar71xx/base-files/etc/diag.sh            | 3 +++
 target/linux/ar71xx/base-files/lib/ar71xx.sh          | 3 +++
 4 files changed, 11 insertions(+)

diff --git a/target/linux/ar71xx/base-files/etc/board.d/01_leds b/target/linux/ar71xx/base-files/etc/board.d/01_leds
index c2737bd..7493c6c 100755
--- a/target/linux/ar71xx/base-files/etc/board.d/01_leds
+++ b/target/linux/ar71xx/base-files/etc/board.d/01_leds
@@ -11,6 +11,10 @@ board_config_update
 board=$(ar71xx_board_name)
 
 case "$board" in
+a40)
+	ucidef_set_led_default "status-red" "Status (red)" "a40:red:status" "0"
+	ucidef_set_led_default "status-blue" "Status (blue)" "a40:blue:status" "0"
+	;;
 a60)
 	ucidef_set_led_default "status-red" "Status (red)" "a60:red:status" "0"
 	ucidef_set_led_default "status-blue" "Status (blue)" "a60:blue:status" "0"
diff --git a/target/linux/ar71xx/base-files/etc/board.d/02_network b/target/linux/ar71xx/base-files/etc/board.d/02_network
index 92c2af7..5f80fef 100755
--- a/target/linux/ar71xx/base-files/etc/board.d/02_network
+++ b/target/linux/ar71xx/base-files/etc/board.d/02_network
@@ -120,6 +120,7 @@ ar71xx_setup_interfaces()
 	wp543)
 		ucidef_set_interface_lan "eth0"
 		;;
+	a40|\
 	a60|\
 	alfa-ap96|\
 	alfa-nx|\
diff --git a/target/linux/ar71xx/base-files/etc/diag.sh b/target/linux/ar71xx/base-files/etc/diag.sh
index 871a12b..82cf6c5 100644
--- a/target/linux/ar71xx/base-files/etc/diag.sh
+++ b/target/linux/ar71xx/base-files/etc/diag.sh
@@ -8,6 +8,9 @@ get_status_led() {
 	local board=$(ar71xx_board_name)
 
 	case $board in
+	a40)
+		status_led="a40:green:status"
+		;;
 	a60)
 		status_led="a60:green:status"
 		;;
diff --git a/target/linux/ar71xx/base-files/lib/ar71xx.sh b/target/linux/ar71xx/base-files/lib/ar71xx.sh
index 4781278..b8ec325 100755
--- a/target/linux/ar71xx/base-files/lib/ar71xx.sh
+++ b/target/linux/ar71xx/base-files/lib/ar71xx.sh
@@ -382,6 +382,9 @@ ar71xx_board_detect() {
 	*"Oolite V1.0")
 		name="oolite"
 		;;
+	*"A40")
+		name="a40"
+		;;
 	*"A60")
 		name="a60"
 		;;



More information about the lede-commits mailing list