2
0
forked from Ivasoft/openwrt

ipq806x: base-files: add support for Linksys EA8500

Signed-off-by: Adrian Panella <ianchi74@outlook.com>
This commit is contained in:
Adrian Panella
2016-05-13 01:13:15 -05:00
committed by John Crispin
parent 2adc6468bf
commit 3d067c0132
8 changed files with 142 additions and 0 deletions

View File

@@ -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

View File

@@ -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"
;;