diff options
author | John Crispin <john@phrozen.org> | 2020-09-07 13:08:41 +0200 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2020-09-17 08:43:07 +0200 |
commit | 0fbdb51f7643db5fa4423333a68f34c6952dba24 (patch) | |
tree | 96fe7a46e272c8900730b539bc2355581e580155 /target/linux/ipq40xx/base-files/etc/board.d/01_leds | |
parent | 4488b260a02e169d6902df44debbe9b3c8e001cc (diff) | |
download | upstream-0fbdb51f7643db5fa4423333a68f34c6952dba24.tar.gz upstream-0fbdb51f7643db5fa4423333a68f34c6952dba24.tar.bz2 upstream-0fbdb51f7643db5fa4423333a68f34c6952dba24.zip |
ipq40xx: add Edgecore OAP-100 support
flashing the unit
* first update to latest edcore FW as per the PDF instructions
* boot the initramfs
- tftpboot 0x88000000 openwrt-ipq40xx-generic-edgecore_oap100-initramfs-fit-uImage.itb; bootm
* inside the initramfs call the following commiands
- ubiattach -p /dev/mtd0
- ubirmvol /dev/ubi0 -n0
- ubirmvol /dev/ubi0 -n1
- ubirmvol /dev/ubi0 -n2
* scp the sysupgrade image to the board and call
- sysupgrade -n openwrt-ipq40xx-generic-edgecore_oap100-squashfs-nand-sysupgrade.bin
Signed-off-by: John Crispin <john@phrozen.org>
Diffstat (limited to 'target/linux/ipq40xx/base-files/etc/board.d/01_leds')
-rwxr-xr-x | target/linux/ipq40xx/base-files/etc/board.d/01_leds | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/target/linux/ipq40xx/base-files/etc/board.d/01_leds b/target/linux/ipq40xx/base-files/etc/board.d/01_leds index e9e0de9da9..313722ffb0 100755 --- a/target/linux/ipq40xx/base-files/etc/board.d/01_leds +++ b/target/linux/ipq40xx/base-files/etc/board.d/01_leds @@ -27,6 +27,10 @@ avm,fritzbox-7530 |\ glinet,gl-b1300) ucidef_set_led_wlan "wlan" "WLAN" "${boardname}:green:wlan" "phy0tpt" ;; +edgecore,oap100) + ucidef_set_led_wlan "wlan2g" "WLAN2G" "${boardname}:blue:wlan2g" "phy0tpt" + ucidef_set_led_wlan "wlan5g" "WLAN5G" "${boardname}:blue:wlan5g" "phy1tpt" + ;; engenius,eap1300) ucidef_set_led_netdev "lan" "LAN" "${boardname}:blue:lan" "eth0" ucidef_set_led_wlan "wlan2g" "WLAN2G" "${boardname}:blue:wlan2g" "phy0tpt" |