diff options
author | Hao Dong <halbertdong@gmail.com> | 2019-01-19 17:39:19 +0000 |
---|---|---|
committer | Rafał Miłecki <rafal@milecki.pl> | 2019-01-20 23:34:44 +0100 |
commit | 62dadcb86c6e6f80ce6fbcd89befc3cc22c2176a (patch) | |
tree | 0b2da585ff73c5e3340093c53537f69520f407a3 /target/linux/bcm53xx/base-files | |
parent | 3ccc0fdd9cdb015dbc711366590ec87c95117b0c (diff) | |
download | upstream-62dadcb86c6e6f80ce6fbcd89befc3cc22c2176a.tar.gz upstream-62dadcb86c6e6f80ce6fbcd89befc3cc22c2176a.tar.bz2 upstream-62dadcb86c6e6f80ce6fbcd89befc3cc22c2176a.zip |
bcm53xx: add support for Phicomm K3
Hardware specifications:
- CPU: Broadcom BCM4709C0 @1.4GHz (Dual-Core ARM)
- RAM: 512 MB (DDR3)
- Flash: 128 MB (NAND)
- LAN ports: 3, LAN speed: 10/100/1000
- WAN ports: 1, WAN speed: 10/100/1000
- 2.4G: BCM4366 4x4 MIMO 1000Mbps -- Skyworks SE2623L 2.4GHz Power Amplifier (x4)
- 5G: BCM4366 4x4 MIMO 2167Mbps -- RFMD RFPA5542 5GHz Power Amplifier Module (x4)
- USB: 1x USB 3.0 port
- 1x LED, 1x reset button, 1x power switch
- 1x system status touch screen
Flash:
- Enter CFE
- Upload the trx file
- Reboot
Signed-off-by: Hao Dong <halbertdong@gmail.com>
Diffstat (limited to 'target/linux/bcm53xx/base-files')
-rwxr-xr-x | target/linux/bcm53xx/base-files/etc/board.d/02_network | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/target/linux/bcm53xx/base-files/etc/board.d/02_network b/target/linux/bcm53xx/base-files/etc/board.d/02_network index dc17af4891..8c9e8b3f3f 100755 --- a/target/linux/bcm53xx/base-files/etc/board.d/02_network +++ b/target/linux/bcm53xx/base-files/etc/board.d/02_network @@ -24,6 +24,12 @@ buffalo,wzr-1750dhp) board_config_flush exit 0 ;; +phicomm,k3) + ucidef_add_switch "switch0" \ + "0:lan" "1:lan" "2:lan" "3:wan" "5@eth0" + board_config_flush + exit 0 + ;; esac wan_macaddr="$(nvram get wan_hwaddr)" |