aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ipq806x/base-files/etc/board.d
diff options
context:
space:
mode:
authorAdrian Panella <ianchi74@outlook.com>2016-06-23 18:54:05 +0200
committerZoltan HERPAI <wigyori@uid0.hu>2016-06-23 18:54:05 +0200
commit476853a27dc2c6752d2853bcd94cae44c57ee569 (patch)
tree5d63519ba5bec4a658501fb44a6892a5808bebe9 /target/linux/ipq806x/base-files/etc/board.d
parent56319a0e3cac2e916a3a248de77e19524a21e802 (diff)
downloadmaster-187ad058-476853a27dc2c6752d2853bcd94cae44c57ee569.tar.gz
master-187ad058-476853a27dc2c6752d2853bcd94cae44c57ee569.tar.bz2
master-187ad058-476853a27dc2c6752d2853bcd94cae44c57ee569.zip
ipq806x: base-files: add support for Linksys EA8500
Signed-off-by: Adrian Panella <ianchi74@outlook.com>
Diffstat (limited to 'target/linux/ipq806x/base-files/etc/board.d')
-rwxr-xr-xtarget/linux/ipq806x/base-files/etc/board.d/01_leds4
-rwxr-xr-xtarget/linux/ipq806x/base-files/etc/board.d/02_network9
2 files changed, 13 insertions, 0 deletions
diff --git a/target/linux/ipq806x/base-files/etc/board.d/01_leds b/target/linux/ipq806x/base-files/etc/board.d/01_leds
index 392dc8b5e7..568b4827b7 100755
--- a/target/linux/ipq806x/base-files/etc/board.d/01_leds
+++ b/target/linux/ipq806x/base-files/etc/board.d/01_leds
@@ -27,6 +27,10 @@ r7500)
ucidef_set_led_default "wps" "WPS" "r7500:white:wps" "0"
ucidef_set_led_default "rfkill" "rfkill" "r7500:white:rfkill" "0"
;;
+ea8500)
+ ucidef_set_led_wlan "wifi" "WIFI" "ea8500:green:wifi" "phy0radio"
+ ucidef_set_led_default "wps" "WPS" "ea8500:green:wps" "0"
+ ;;
*)
;;
esac
diff --git a/target/linux/ipq806x/base-files/etc/board.d/02_network b/target/linux/ipq806x/base-files/etc/board.d/02_network
index e3c9137a5a..67969669f1 100755
--- a/target/linux/ipq806x/base-files/etc/board.d/02_network
+++ b/target/linux/ipq806x/base-files/etc/board.d/02_network
@@ -6,6 +6,7 @@
. /lib/functions/uci-defaults.sh
. /lib/ipq806x.sh
+. /lib/functions/system.sh
board_config_update
@@ -24,6 +25,14 @@ db149)
ucidef_add_switch "switch0" \
"1:lan" "2:lan" "3:lan" "4:lan" "6@eth1" "5:wan" "0@eth0"
;;
+ea8500)
+
+ hw_mac_addr=$(mtd_get_mac_ascii devinfo hw_mac_addr)
+ ucidef_add_switch "switch0" \
+ "1:lan" "2:lan" "3:lan" "4:lan" "0t@eth0" "5:wan" "0t@eth0"
+ ucidef_set_interface_macaddr "lan" "$hw_mac_addr"
+ ucidef_set_interface_macaddr "wan" "$hw_mac_addr"
+ ;;
*)
echo "Unsupported hardware. Network interfaces not intialized"
;;