2017-02-19 18:27:36 +00:00
|
|
|
|
2016-05-24 19:09:19 +00:00
|
|
|
#
|
|
|
|
# BCM33XX/BCM63XX Profiles
|
|
|
|
#
|
|
|
|
|
2020-03-10 06:41:09 +00:00
|
|
|
DEVICE_VARS += HCS_MAGIC_BYTES HCS_REV_MIN HCS_REV_MAJ
|
|
|
|
DEVICE_VARS += BLOCK_SIZE FLASH_MB IMAGE_OFFSET
|
2020-05-20 07:21:34 +00:00
|
|
|
DEVICE_VARS += CFE_BOARD_ID CFE_EXTRAS
|
2020-03-10 06:41:09 +00:00
|
|
|
DEVICE_VARS += NETGEAR_BOARD_ID NETGEAR_REGION
|
|
|
|
DEVICE_VARS += REDBOOT_PREFIX
|
|
|
|
|
2016-05-24 19:09:19 +00:00
|
|
|
define Device/bcm33xx
|
|
|
|
KERNEL_INITRAMFS := kernel-bin | append-dtb | lzma | loader-lzma bin | hcs-initramfs
|
|
|
|
IMAGES :=
|
|
|
|
HCS_MAGIC_BYTES :=
|
|
|
|
HCS_REV_MIN :=
|
|
|
|
HCS_REV_MAJ :=
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Device/bcm63xx
|
|
|
|
FILESYSTEMS := squashfs jffs2-64k jffs2-128k
|
2020-06-03 07:00:09 +00:00
|
|
|
KERNEL := kernel-bin | append-dtb | relocate-kernel | lzma
|
2016-05-24 19:09:19 +00:00
|
|
|
KERNEL_INITRAMFS := kernel-bin | append-dtb | lzma | loader-lzma elf
|
|
|
|
IMAGES := cfe.bin
|
2016-06-21 11:53:45 +00:00
|
|
|
IMAGE/cfe.bin := cfe-bin --pad $$$$(shell expr $$$$(FLASH_MB) / 2)
|
2016-05-24 19:09:19 +00:00
|
|
|
IMAGE/cfe-4M.bin := cfe-bin --pad 2
|
|
|
|
IMAGE/cfe-8M.bin := cfe-bin --pad 4
|
|
|
|
IMAGE/cfe-16M.bin := cfe-bin --pad 8
|
|
|
|
IMAGE/cfe-bc221.bin := cfe-bin --layoutver 5
|
|
|
|
IMAGE/cfe-old.bin := cfe-old-bin
|
2016-06-21 11:53:45 +00:00
|
|
|
IMAGE/sysupgrade.bin := cfe-bin
|
2016-06-21 12:17:02 +00:00
|
|
|
BLOCK_SIZE := 0x10000
|
|
|
|
IMAGE_OFFSET :=
|
2016-06-21 11:53:45 +00:00
|
|
|
FLASH_MB := 4
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID :=
|
2016-07-09 11:10:08 +00:00
|
|
|
CFE_EXTRAS = --block-size $$(BLOCK_SIZE) --image-offset $$(if $$(IMAGE_OFFSET),$$(IMAGE_OFFSET),$$(BLOCK_SIZE))
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
|
|
|
|
2020-06-03 07:00:09 +00:00
|
|
|
define Device/bcm63xx-legacy
|
|
|
|
$(Device/bcm63xx)
|
|
|
|
KERNEL := kernel-bin | append-dtb | relocate-kernel | lzma-cfe
|
|
|
|
endef
|
|
|
|
|
2016-05-24 19:09:19 +00:00
|
|
|
define Device/bcm63xx_netgear
|
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := NETGEAR
|
2016-05-24 19:09:19 +00:00
|
|
|
IMAGES := factory.chk sysupgrade.bin
|
|
|
|
IMAGE/factory.chk := cfe-bin | netgear-chk
|
|
|
|
NETGEAR_BOARD_ID :=
|
|
|
|
NETGEAR_REGION :=
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Device/bcm63xx_redboot
|
|
|
|
FILESYSTEMS := squashfs
|
2016-08-29 14:03:33 +00:00
|
|
|
KERNEL := kernel-bin | append-dtb | relocate-kernel | gzip
|
2016-05-24 19:09:19 +00:00
|
|
|
KERNEL_INITRAMFS := kernel-bin | append-dtb | lzma | loader-lzma elf
|
|
|
|
IMAGES := redboot.bin
|
|
|
|
IMAGE/redboot.bin := redboot-bin
|
2021-02-22 14:55:43 +00:00
|
|
|
REDBOOT_PREFIX := $$(DEVICE_IMG_PREFIX)
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
### Generic ###
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/brcm_bcm963281tan
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Generic
|
|
|
|
DEVICE_MODEL := 963281TAN
|
2016-05-24 19:09:19 +00:00
|
|
|
IMAGES := cfe-4M.bin cfe-8M.bin cfe-16M.bin
|
|
|
|
CFE_BOARD_ID := 963281TAN
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6328
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += brcm_bcm963281tan
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/brcm_bcm96328avng
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Generic
|
|
|
|
DEVICE_MODEL := 96328avng
|
2016-05-24 19:09:19 +00:00
|
|
|
IMAGES := cfe-4M.bin cfe-8M.bin cfe-16M.bin
|
|
|
|
CFE_BOARD_ID := 96328avng
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6328
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += brcm_bcm96328avng
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/brcm_bcm96338gw
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Generic
|
|
|
|
DEVICE_MODEL := 96338GW
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 6338GW
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6338
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += brcm_bcm96338gw
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/brcm_bcm96338w
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Generic
|
|
|
|
DEVICE_MODEL := 96338W
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 6338W
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6338
|
2020-02-28 11:00:29 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += brcm_bcm96338w
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/brcm_bcm96345gw2
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Generic
|
|
|
|
DEVICE_MODEL := 96345GW2
|
2016-05-24 19:09:19 +00:00
|
|
|
IMAGES += cfe-bc221.bin
|
|
|
|
CFE_BOARD_ID := 96345GW2
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6345
|
2019-08-16 10:24:13 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += brcm_bcm96345gw2
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/brcm_bcm96348gw
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Generic
|
|
|
|
DEVICE_MODEL := 96348GW
|
2016-05-24 19:09:19 +00:00
|
|
|
IMAGES += cfe-bc221.bin
|
|
|
|
CFE_BOARD_ID := 96348GW
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6348
|
2020-02-28 11:00:29 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += brcm_bcm96348gw
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/brcm_bcm96348gw-10
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Generic
|
|
|
|
DEVICE_MODEL := 96348GW-10
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96348GW-10
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6348
|
2020-02-28 11:00:29 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += brcm_bcm96348gw-10
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/brcm_bcm96348gw-11
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Generic
|
|
|
|
DEVICE_MODEL := 96348GW-11
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96348GW-11
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6348
|
2020-02-28 11:00:29 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += brcm_bcm96348gw-11
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/brcm_bcm96348r
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Generic
|
|
|
|
DEVICE_MODEL := 96348R
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96348R
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6348
|
2020-02-28 11:00:29 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += brcm_bcm96348r
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/brcm_bcm96358vw
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Generic
|
|
|
|
DEVICE_MODEL := 96358VW
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96358VW
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6358
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += brcm_bcm96358vw
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/brcm_bcm96358vw2
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Generic
|
|
|
|
DEVICE_MODEL := 96358VW2
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96358VW2
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6358
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += brcm_bcm96358vw2
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/brcm_bcm96368mvngr
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Generic
|
|
|
|
DEVICE_MODEL := 96368MVNgr
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96368MVNgr
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6368
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += brcm_bcm96368mvngr
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/brcm_bcm96368mvwg
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Generic
|
|
|
|
DEVICE_MODEL := 96368MVWG
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96368MVWG
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6368
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += brcm_bcm96368mvwg
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2017-02-19 18:27:36 +00:00
|
|
|
### Actiontec ###
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/actiontec_r1000h
|
2017-02-19 18:27:36 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Actiontec
|
|
|
|
DEVICE_MODEL := R1000H
|
2017-02-19 18:27:36 +00:00
|
|
|
FILESYSTEMS := squashfs
|
|
|
|
CFE_BOARD_ID := 96368MVWG
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6368
|
2017-02-19 18:27:36 +00:00
|
|
|
FLASH_MB := 32
|
|
|
|
IMAGE_OFFSET := 0x20000
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(USB2_PACKAGES) $(BRCMWL_PACKAGES)
|
2017-02-19 18:27:36 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += actiontec_r1000h
|
2017-02-19 18:27:36 +00:00
|
|
|
|
2016-05-24 19:09:19 +00:00
|
|
|
### ADB ###
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/adb_a4001n
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := ADB
|
|
|
|
DEVICE_MODEL := P.DG A4001N
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96328dg2x2
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6328
|
2016-06-21 11:53:45 +00:00
|
|
|
FLASH_MB := 8
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(USB2_PACKAGES) $(B43_PACKAGES)
|
2023-05-20 06:37:45 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += adb_a4001n
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/adb_a4001n1
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := ADB
|
|
|
|
DEVICE_MODEL := P.DG A4001N1
|
2016-06-21 11:53:45 +00:00
|
|
|
IMAGES += sysupgrade.bin
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 963281T_TEF
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6328
|
2016-06-21 11:53:45 +00:00
|
|
|
FLASH_MB := 16
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(USB2_PACKAGES) $(B43_PACKAGES)
|
2023-05-20 06:37:45 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += adb_a4001n1
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-02 15:13:44 +00:00
|
|
|
define Device/adb_pdg-a4001n-a-000-1a1-ax
|
|
|
|
$(Device/bcm63xx)
|
|
|
|
DEVICE_VENDOR := ADB
|
|
|
|
DEVICE_MODEL := P.DG A4001N A-000-1A1-AX
|
|
|
|
IMAGES += sysupgrade.bin
|
|
|
|
CFE_BOARD_ID := 96328avng
|
|
|
|
CHIP_ID := 6328
|
|
|
|
FLASH_MB := 16
|
|
|
|
DEVICE_PACKAGES := $(USB2_PACKAGES) $(B43_PACKAGES)
|
2023-05-20 06:37:45 +00:00
|
|
|
DEFAULT := n
|
2019-12-02 15:13:44 +00:00
|
|
|
endef
|
|
|
|
TARGET_DEVICES += adb_pdg-a4001n-a-000-1a1-ax
|
|
|
|
|
bcm63xx: add support for ADB P.DG A4101N A-000-1A1-AE
ADB P.DG A4101N A-000-1A1-AE has a similar PCB as the OpenWrt's ADB P.DG A4001N1
with LEDs connected to different GPIO PINs in active low configuration.
Hardware:
* Board ID: 96328avngv
* SoC: Broadcom BCM6328 (rev b0) @ 320MHz, CPU BMIPS4350
* RAM DDR2: 64 Mbyte - Winbond W9751G6KB-25
* Serial flash: 16 Mbyte - Winbond 25Q128BVFG
* Ethernet: 4x Ethernet 10/100 baseT
* Wifi 2.4GHz: Broadcom Corporation BCM43225 Wireless Network Adapter (rev 23)
* LEDs: 1x Power, 1x DSL, 1x Internet, 4x ETH, 1x USB, 1x WLAN, 1x WPS, 1x TEL
* Buttons: 1x Reset, 1x WPS, 1x unnamed
* UART: 1x TTL 115200n8, VCC RX TX GND, on J502 connector
Installation via CFE:
* Stock CFE has to be overwritten with a generic 6328 one that can upload
.bin images with no signature check (cfe6328_configured.bin)
* Connect a serial port to the board
* Stop the cfe boot process after power on by pressing enter
* Set static IP 192.168.2.10 and subnet mask 255.255.255.0
* Navigate to http://192.168.2.50/
* Upload the OpenWrt image file
A4101N GPIO LAYOUT:
Power always on
DSL GPIO483(03)
Internet GPIO491(11)
ETH1 GPIO505(25)
ETH2 GPIO506(26)
ETH3 GPIO507(27)
ETH4 GPIO508(28)
USB GPIO490(10)
WLAN controlled by BCM43225
WPS GPIO489(09)
TEL GPIO511(31)
Key RESET GPIO503(23)
Key WPS GPIO504(24)
Key unnamed GPIO492(12)
Signed-off-by: Daniele Castro <danielecastro@hotmail.it>
[Amend commit description, DTS improvements, refresh patches]
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
2020-09-09 01:21:14 +00:00
|
|
|
define Device/adb_pdg-a4101n-a-000-1a1-ae
|
|
|
|
$(Device/bcm63xx)
|
|
|
|
DEVICE_VENDOR := ADB
|
|
|
|
DEVICE_MODEL := P.DG A4101N A-000-1A1-AE
|
|
|
|
IMAGES += sysupgrade.bin
|
|
|
|
CFE_BOARD_ID := 96328avngv
|
|
|
|
CHIP_ID := 6328
|
|
|
|
FLASH_MB := 16
|
|
|
|
DEVICE_PACKAGES := $(USB2_PACKAGES) $(B43_PACKAGES)
|
|
|
|
endef
|
|
|
|
TARGET_DEVICES += adb_pdg-a4101n-a-000-1a1-ae
|
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/adb_av4202n
|
2016-12-23 23:24:44 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := ADB
|
|
|
|
DEVICE_MODEL := P.DG AV4202N
|
2016-12-23 23:24:44 +00:00
|
|
|
IMAGE_OFFSET := 0x20000
|
|
|
|
CFE_BOARD_ID := 96368_Swiss_S1
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6368
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(USB2_PACKAGES) $(B43_PACKAGES)
|
2016-12-23 23:24:44 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += adb_av4202n
|
2016-12-23 23:24:44 +00:00
|
|
|
|
2016-05-24 19:09:19 +00:00
|
|
|
### Alcatel ###
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/alcatel_rg100a
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Alcatel
|
|
|
|
DEVICE_MODEL := RG100A
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96358VW2
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6358
|
2016-06-21 12:17:02 +00:00
|
|
|
BLOCK_SIZE := 0x20000
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(USB2_PACKAGES) $(B43_PACKAGES)
|
2023-05-20 06:37:45 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += alcatel_rg100a
|
2016-05-24 19:09:19 +00:00
|
|
|
|
|
|
|
### Asmax ###
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/asmax_ar-1004g
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Asmax
|
|
|
|
DEVICE_MODEL := AR 1004g
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96348GW-10
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6348
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES)
|
2019-08-16 10:24:13 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += asmax_ar-1004g
|
2016-05-24 19:09:19 +00:00
|
|
|
|
|
|
|
### Belkin ###
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/belkin_f5d7633
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Belkin
|
|
|
|
DEVICE_MODEL := F5D7633
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96348GW-10
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6348
|
2016-06-21 12:17:02 +00:00
|
|
|
BLOCK_SIZE := 0x20000
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES)
|
2019-08-16 10:24:13 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += belkin_f5d7633
|
2016-05-24 19:09:19 +00:00
|
|
|
|
|
|
|
### Broadcom ###
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/brcm_bcm96318ref
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Broadcom
|
|
|
|
DEVICE_MODEL := BCM96318REF reference board
|
2016-05-24 19:09:19 +00:00
|
|
|
IMAGES :=
|
|
|
|
CFE_BOARD_ID := 96318REF
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6318
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES) $(USB2_PACKAGES) kmod-bcm63xx-udc
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += brcm_bcm96318ref
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/brcm_bcm96318ref-p300
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Broadcom
|
|
|
|
DEVICE_MODEL := BCM96318REF_P300 reference board
|
2016-05-24 19:09:19 +00:00
|
|
|
IMAGES :=
|
|
|
|
CFE_BOARD_ID := 96318REF_P300
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6318
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES) $(USB2_PACKAGES) kmod-bcm63xx-udc
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += brcm_bcm96318ref-p300
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/brcm_bcm963268bu-p300
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Broadcom
|
|
|
|
DEVICE_MODEL := BCM963268BU_P300 reference board
|
2016-05-24 19:09:19 +00:00
|
|
|
IMAGES :=
|
|
|
|
CFE_BOARD_ID := 963268BU_P300
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 63268
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(USB2_PACKAGES) kmod-bcm63xx-udc
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += brcm_bcm963268bu-p300
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/brcm_bcm963269bhr
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Broadcom
|
|
|
|
DEVICE_MODEL := BCM963269BHR reference board
|
2016-05-24 19:09:19 +00:00
|
|
|
IMAGES :=
|
|
|
|
CFE_BOARD_ID := 963269BHR
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 63268
|
2020-01-05 12:14:43 +00:00
|
|
|
SOC := bcm63269
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(USB2_PACKAGES) kmod-bcm63xx-udc
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += brcm_bcm963269bhr
|
2016-05-24 19:09:19 +00:00
|
|
|
|
|
|
|
### BT ###
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/bt_home-hub-2-a
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2021-12-11 08:33:46 +00:00
|
|
|
DEVICE_VENDOR := British Telecom (BT)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_MODEL := Home Hub 2.0
|
|
|
|
DEVICE_VARIANT := A
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := HOMEHUB2A
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6358
|
2016-06-21 12:17:02 +00:00
|
|
|
BLOCK_SIZE := 0x20000
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES) $(USB2_PACKAGES)
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += bt_home-hub-2-a
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/bt_voyager-2110
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2021-12-11 08:33:46 +00:00
|
|
|
DEVICE_VENDOR := British Telecom (BT)
|
2019-12-29 00:55:54 +00:00
|
|
|
DEVICE_MODEL := Voyager 2110
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := V2110
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6348
|
2016-06-21 12:17:02 +00:00
|
|
|
CFE_EXTRAS += --layoutver 5
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES)
|
2019-08-16 10:24:13 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += bt_voyager-2110
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/bt_voyager-2500v-bb
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2021-12-11 08:33:46 +00:00
|
|
|
DEVICE_VENDOR := British Telecom (BT)
|
2019-12-29 00:55:54 +00:00
|
|
|
DEVICE_MODEL := Voyager 2500V
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := V2500V_BB
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6348
|
2016-06-21 12:17:02 +00:00
|
|
|
CFE_EXTRAS += --layoutver 5
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES)
|
2019-08-16 10:24:13 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += bt_voyager-2500v-bb
|
2016-05-24 19:09:19 +00:00
|
|
|
|
|
|
|
### Comtrend ###
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/comtrend_ar-5315u
|
2017-08-12 10:40:22 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Comtrend
|
|
|
|
DEVICE_MODEL := AR-5315u
|
2017-08-12 10:40:22 +00:00
|
|
|
IMAGES += sysupgrade.bin
|
|
|
|
CFE_BOARD_ID := 96318A-1441N1
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6318
|
2017-08-12 10:40:22 +00:00
|
|
|
FLASH_MB := 16
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES) $(USB2_PACKAGES)
|
2017-08-12 10:40:22 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += comtrend_ar-5315u
|
2017-08-12 10:40:22 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/comtrend_ar-5381u
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Comtrend
|
|
|
|
DEVICE_MODEL := AR-5381u
|
2016-06-21 11:53:45 +00:00
|
|
|
IMAGES += sysupgrade.bin
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96328A-1241N
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6328
|
2016-06-21 11:53:45 +00:00
|
|
|
FLASH_MB := 16
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES) $(USB2_PACKAGES)
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += comtrend_ar-5381u
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/comtrend_ar-5387un
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Comtrend
|
|
|
|
DEVICE_MODEL := AR-5387un
|
2016-06-21 11:53:45 +00:00
|
|
|
IMAGES += sysupgrade.bin
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96328A-1441N1
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6328
|
2016-06-21 11:53:45 +00:00
|
|
|
FLASH_MB := 16
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES) $(USB2_PACKAGES)
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += comtrend_ar-5387un
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/comtrend_ct-536plus
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Comtrend
|
|
|
|
DEVICE_MODEL := CT-536+
|
|
|
|
DEVICE_ALT0_VENDOR := Comtrend
|
|
|
|
DEVICE_ALT0_MODEL := CT-5621
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96348GW-11
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6348
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES)
|
2019-08-16 10:24:13 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += comtrend_ct-536plus
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/comtrend_ct-5365
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Comtrend
|
|
|
|
DEVICE_MODEL := CT-5365
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96348A-122
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6348
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES)
|
2019-08-16 10:24:13 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += comtrend_ct-5365
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/comtrend_ct-6373
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Comtrend
|
|
|
|
DEVICE_MODEL := CT-6373
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := CT6373-1
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6358
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES) $(USB2_PACKAGES)
|
2023-05-20 06:37:45 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += comtrend_ct-6373
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/comtrend_vr-3025u
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Comtrend
|
|
|
|
DEVICE_MODEL := VR-3025u
|
2016-06-21 11:53:45 +00:00
|
|
|
IMAGES += sysupgrade.bin
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96368M-1541N
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6368
|
2016-06-21 12:17:02 +00:00
|
|
|
BLOCK_SIZE := 0x20000
|
2016-06-21 11:53:45 +00:00
|
|
|
FLASH_MB := 32
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES) $(USB2_PACKAGES)
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += comtrend_vr-3025u
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/comtrend_vr-3025un
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Comtrend
|
|
|
|
DEVICE_MODEL := VR-3025un
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96368M-1341N
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6368
|
2016-06-21 11:53:45 +00:00
|
|
|
FLASH_MB := 8
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES) $(USB2_PACKAGES)
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += comtrend_vr-3025un
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/comtrend_vr-3026e
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Comtrend
|
|
|
|
DEVICE_MODEL := VR-3026e
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96368MT-1341N1
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6368
|
2016-06-21 11:53:45 +00:00
|
|
|
FLASH_MB := 8
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES)
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += comtrend_vr-3026e
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/comtrend_wap-5813n
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Comtrend
|
|
|
|
DEVICE_MODEL := WAP-5813n
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96369R-1231N
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6368
|
2016-06-21 11:53:45 +00:00
|
|
|
FLASH_MB := 8
|
2020-01-05 12:14:43 +00:00
|
|
|
SOC := bcm6369
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES) $(USB2_PACKAGES)
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += comtrend_wap-5813n
|
2016-05-24 19:09:19 +00:00
|
|
|
|
|
|
|
### D-Link ###
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/d-link_dsl-2640b-b
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := D-Link
|
|
|
|
DEVICE_MODEL := DSL-2640B
|
|
|
|
DEVICE_VARIANT := B2
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := D-4P-W
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6348
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES)
|
2019-08-16 10:24:13 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += d-link_dsl-2640b-b
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/d-link_dsl-2640u
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := D-Link
|
|
|
|
DEVICE_MODEL := DSL-2640U
|
|
|
|
DEVICE_VARIANT := C1
|
|
|
|
DEVICE_ALT0_VENDOR := D-Link
|
|
|
|
DEVICE_ALT0_MODEL := DSL-2640U/BRU/C
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96338W2_E7T
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6338
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES)
|
2019-08-16 10:24:13 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += d-link_dsl-2640u
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/d-link_dsl-2650u
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := D-Link
|
|
|
|
DEVICE_MODEL := DSL-2650U
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96358VW2
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6358
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES) $(USB2_PACKAGES)
|
2023-05-20 06:37:45 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += d-link_dsl-2650u
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/d-link_dsl-274xb-c2
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := D-Link
|
|
|
|
DEVICE_MODEL := DSL-2740B
|
|
|
|
DEVICE_VARIANT := C2
|
|
|
|
DEVICE_ALT0_VENDOR := D-Link
|
|
|
|
DEVICE_ALT0_MODEL := DSL-2741B
|
|
|
|
DEVICE_ALT0_VARIANT := C2
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96358GW
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6358
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES)
|
2020-02-28 11:00:29 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += d-link_dsl-274xb-c2
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/d-link_dsl-274xb-c3
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := D-Link
|
|
|
|
DEVICE_MODEL := DSL-2740B
|
|
|
|
DEVICE_VARIANT := C3
|
|
|
|
DEVICE_ALT0_VENDOR := D-Link
|
|
|
|
DEVICE_ALT0_MODEL := DSL-2741B
|
|
|
|
DEVICE_ALT0_VARIANT := C3
|
2019-12-29 00:55:54 +00:00
|
|
|
DEVICE_DTS := bcm6358-d-link-dsl-274xb-c2
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := AW4139
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6358
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES)
|
2020-02-28 11:00:29 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += d-link_dsl-274xb-c3
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/d-link_dsl-274xb-f1
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := D-Link
|
|
|
|
DEVICE_MODEL := DSL-2740B
|
|
|
|
DEVICE_VARIANT := F1
|
|
|
|
DEVICE_ALT0_VENDOR := D-Link
|
|
|
|
DEVICE_ALT0_MODEL := DSL-2741B
|
|
|
|
DEVICE_ALT0_VARIANT := F1
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := AW4339U
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6328
|
2016-06-18 11:38:46 +00:00
|
|
|
IMAGES := cfe-EU.bin cfe-AU.bin
|
|
|
|
IMAGE/cfe-AU.bin := cfe-bin --signature2 "4.06.01.AUF1" --pad 4
|
|
|
|
IMAGE/cfe-EU.bin := cfe-bin --signature2 "4.06.01.EUF1" --pad 4
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(ATH9K_PACKAGES)
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += d-link_dsl-274xb-f1
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2020-08-18 12:22:20 +00:00
|
|
|
define Device/d-link_dsl-2750u-c1
|
|
|
|
$(Device/bcm63xx)
|
|
|
|
DEVICE_VENDOR := D-Link
|
|
|
|
DEVICE_MODEL := DSL-2750U
|
|
|
|
DEVICE_VARIANT := C1
|
|
|
|
IMAGES += sysupgrade.bin
|
|
|
|
CFE_BOARD_ID := 963281TAVNG
|
|
|
|
CHIP_ID := 6328
|
|
|
|
FLASH_MB := 8
|
|
|
|
DEVICE_PACKAGES := $(USB2_PACKAGES) $(B43_PACKAGES)
|
2023-05-20 06:37:45 +00:00
|
|
|
DEFAULT := n
|
2020-08-18 12:22:20 +00:00
|
|
|
endef
|
|
|
|
TARGET_DEVICES += d-link_dsl-2750u-c1
|
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/d-link_dsl-275xb-d1
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := D-Link
|
|
|
|
DEVICE_MODEL := DSL-2750B
|
|
|
|
DEVICE_VARIANT := D1
|
|
|
|
DEVICE_ALT0_VENDOR := D-Link
|
|
|
|
DEVICE_ALT0_MODEL := DSL-2751
|
|
|
|
DEVICE_ALT0_VARIANT := D1
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := AW5200B
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6318
|
2016-06-21 11:53:45 +00:00
|
|
|
FLASH_MB := 8
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES) $(USB2_PACKAGES)
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += d-link_dsl-275xb-d1
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/d-link_dva-g3810bn-tl
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := D-Link
|
|
|
|
DEVICE_MODEL := DVA-G3810BN/TL
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96358VW
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6358
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES) $(USB2_PACKAGES)
|
2023-05-20 06:37:45 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += d-link_dva-g3810bn-tl
|
2016-05-24 19:09:19 +00:00
|
|
|
|
|
|
|
### Davolink ###
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/davolink_dv-201amr
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Davolink
|
|
|
|
DEVICE_MODEL := DV-201AMR
|
2016-05-24 19:09:19 +00:00
|
|
|
IMAGES := cfe-old.bin
|
|
|
|
CFE_BOARD_ID := DV201AMR
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6348
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES)
|
2019-08-16 10:24:13 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += davolink_dv-201amr
|
2016-05-24 19:09:19 +00:00
|
|
|
|
|
|
|
### Dynalink ###
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/dynalink_rta770bw
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Dynalink
|
|
|
|
DEVICE_MODEL := RTA770BW
|
|
|
|
DEVICE_ALT0_VENDOR := Siemens
|
|
|
|
DEVICE_ALT0_MODEL := SE515
|
2016-05-24 19:09:19 +00:00
|
|
|
IMAGES =
|
|
|
|
CFE_BOARD_ID := RTA770BW
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6345
|
2016-06-21 12:17:02 +00:00
|
|
|
CFE_EXTRAS += --layoutver 5
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES)
|
2019-08-16 10:24:13 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += dynalink_rta770bw
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/dynalink_rta770w
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Dynalink
|
|
|
|
DEVICE_MODEL := RTA770W
|
2016-05-24 19:09:19 +00:00
|
|
|
IMAGES =
|
|
|
|
CFE_BOARD_ID := RTA770W
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6345
|
2016-06-21 12:17:02 +00:00
|
|
|
CFE_EXTRAS += --layoutver 5
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES)
|
2019-08-16 10:24:13 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += dynalink_rta770w
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/dynalink_rta1025w
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Dynalink
|
|
|
|
DEVICE_MODEL := RTA1025W
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := RTA1025W_16
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6348
|
2016-06-21 12:17:02 +00:00
|
|
|
CFE_EXTRAS += --layoutver 5
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES)
|
2019-08-16 10:24:13 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += dynalink_rta1025w
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/dynalink_rta1320
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Dynalink
|
|
|
|
DEVICE_MODEL := RTA1320
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := RTA1320_16M
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6338
|
2016-06-21 12:17:02 +00:00
|
|
|
CFE_EXTRAS += --layoutver 5
|
2019-08-16 10:24:13 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += dynalink_rta1320
|
2016-05-24 19:09:19 +00:00
|
|
|
|
|
|
|
### Huawei ###
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/huawei_echolife-hg520v
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Huawei
|
|
|
|
DEVICE_MODEL := EchoLife HG520v
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := HW6358GW_B
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6358
|
2016-06-21 12:17:02 +00:00
|
|
|
CFE_EXTRAS += --rsa-signature "EchoLife_HG520v"
|
2020-01-05 12:14:43 +00:00
|
|
|
SOC := bcm6359
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES)
|
2020-02-28 11:00:29 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += huawei_echolife-hg520v
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/huawei_echolife-hg553
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Huawei
|
|
|
|
DEVICE_MODEL := EchoLife HG553
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := HW553
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6358
|
2016-06-21 12:17:02 +00:00
|
|
|
CFE_EXTRAS += --rsa-signature "EchoLife_HG553" --tag-version 7
|
|
|
|
BLOCK_SIZE := 0x20000
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES) $(USB2_PACKAGES)
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += huawei_echolife-hg553
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/huawei_echolife-hg556a-a
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Huawei
|
|
|
|
DEVICE_MODEL := EchoLife HG556a
|
|
|
|
DEVICE_VARIANT := A
|
2016-05-24 19:09:19 +00:00
|
|
|
DEVICE_DESCRIPTION = Build firmware images for Huawei HG556a version A (Atheros)
|
|
|
|
CFE_BOARD_ID := HW556
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6358
|
2016-06-21 12:17:02 +00:00
|
|
|
CFE_EXTRAS += --rsa-signature "EchoLife_HG556a" --tag-version 8
|
|
|
|
IMAGE_OFFSET := 0x20000
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(ATH9K_PACKAGES) $(USB2_PACKAGES)
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += huawei_echolife-hg556a-a
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/huawei_echolife-hg556a-b
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Huawei
|
|
|
|
DEVICE_MODEL := EchoLife HG556a
|
|
|
|
DEVICE_VARIANT := B
|
2016-05-24 19:09:19 +00:00
|
|
|
DEVICE_DESCRIPTION = Build firmware images for Huawei HG556a version B (Atheros)
|
|
|
|
CFE_BOARD_ID := HW556
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6358
|
2016-06-21 12:17:02 +00:00
|
|
|
CFE_EXTRAS += --rsa-signature "EchoLife_HG556a" --tag-version 8
|
|
|
|
BLOCK_SIZE := 0x20000
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(ATH9K_PACKAGES) $(USB2_PACKAGES)
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += huawei_echolife-hg556a-b
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/huawei_echolife-hg556a-c
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Huawei
|
|
|
|
DEVICE_MODEL := EchoLife HG556a
|
|
|
|
DEVICE_VARIANT := C
|
2016-06-05 13:42:27 +00:00
|
|
|
DEVICE_DESCRIPTION = Build firmware images for Huawei HG556a version C (Ralink)
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := HW556
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6358
|
2016-06-21 12:17:02 +00:00
|
|
|
CFE_EXTRAS += --rsa-signature "EchoLife_HG556a" --tag-version 8
|
|
|
|
BLOCK_SIZE := 0x20000
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(RT28_PACKAGES) $(USB2_PACKAGES)
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += huawei_echolife-hg556a-c
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/huawei_echolife-hg622
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Huawei
|
|
|
|
DEVICE_MODEL := EchoLife HG622
|
2016-06-21 11:53:45 +00:00
|
|
|
IMAGES += sysupgrade.bin
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96368MVWG_hg622
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6368
|
2016-06-21 12:17:02 +00:00
|
|
|
CFE_EXTRAS += --tag-version 7
|
|
|
|
BLOCK_SIZE := 0x20000
|
2016-06-21 11:53:45 +00:00
|
|
|
FLASH_MB := 16
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(RT28_PACKAGES) $(USB2_PACKAGES)
|
2023-05-20 06:37:45 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += huawei_echolife-hg622
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/huawei_echolife-hg655b
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Huawei
|
|
|
|
DEVICE_MODEL := EchoLife HG655b
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := HW65x
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6368
|
2016-06-21 12:17:02 +00:00
|
|
|
CFE_EXTRAS += --tag-version 7
|
|
|
|
IMAGE_OFFSET := 0x20000
|
2016-06-21 11:53:45 +00:00
|
|
|
FLASH_MB := 8
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(RT28_PACKAGES) $(USB2_PACKAGES)
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += huawei_echolife-hg655b
|
2016-05-24 19:09:19 +00:00
|
|
|
|
bcm63xx: add support for Innacomm W3400V6
Innacomm W3400V6 is an xDSL B/G wireless router based on Broadcom BCM6328 SoC.
Hardware:
SoC: Broadcom BCM6328
CPU: BMIPS4350 V8.0, 320 MHz, 1 core
Flash: SPI-NOR 8MB, MX25L6406E
RAM: 64 MB
Ethernet: 4x 10/100 Mbps
Switch: Integrated
Wireless: 802.11b/g, BCM4312
LEDs/Buttons: 9x / 2x
Flash instruction, web UI:
1) Set a static IP on your computer compatible
with 192.168.1.1, i.e 192.168.1.100
2) Connect the ethernet cable from your computer to the router.
3) Make sure the router is powered off.
4) Press the reset button, don't release it yet!
5) While pressing reset, power on the router.
6) Wait 10 seconds or more.
Note: The power LED is red at first then turns to solid
green when ready.
8) Release the reset button.
9) Browse to 192.168.1.1
10) Select .bin file.
10) Upgrade the image.
11) Wait for it to reboot.
Signed-off-by: Sieng Piaw Liew <liew.s.piaw@gmail.com>
[Ammend commit description, merge patches, DT improvements]
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
2020-10-09 09:04:03 +00:00
|
|
|
### Innacomm ###
|
|
|
|
define Device/innacomm_w3400v6
|
|
|
|
$(Device/bcm63xx)
|
|
|
|
DEVICE_VENDOR := Innacomm
|
|
|
|
DEVICE_MODEL := W3400V6
|
|
|
|
CFE_BOARD_ID := 96328ang
|
|
|
|
CHIP_ID := 6328
|
|
|
|
FLASH_MB := 8
|
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES)
|
|
|
|
endef
|
|
|
|
TARGET_DEVICES += innacomm_w3400v6
|
|
|
|
|
2016-05-24 19:09:19 +00:00
|
|
|
### Inteno ###
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/inteno_vg50
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Inteno
|
|
|
|
DEVICE_MODEL := VG50 Multi-WAN CPE
|
2016-05-24 19:09:19 +00:00
|
|
|
IMAGES :=
|
|
|
|
CFE_BOARD_ID := VW6339GU
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 63268
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(USB2_PACKAGES)
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += inteno_vg50
|
2016-05-24 19:09:19 +00:00
|
|
|
|
|
|
|
### Inventel ###
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/inventel_livebox-1
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm63xx_redboot)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Inventel
|
|
|
|
DEVICE_MODEL := Livebox 1
|
2019-12-29 00:55:54 +00:00
|
|
|
SOC := bcm6348
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES) $(USB1_PACKAGES)
|
2019-08-16 10:24:13 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += inventel_livebox-1
|
2016-05-24 19:09:19 +00:00
|
|
|
|
|
|
|
### Netgear ###
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/netgear_cvg834g
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm33xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := NETGEAR
|
|
|
|
DEVICE_MODEL := CVG834G
|
2020-05-20 07:23:10 +00:00
|
|
|
CHIP_ID := 3368
|
2016-05-24 19:09:19 +00:00
|
|
|
HCS_MAGIC_BYTES := 0xa020
|
|
|
|
HCS_REV_MIN := 0001
|
|
|
|
HCS_REV_MAJ := 0022
|
2023-05-20 06:37:45 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += netgear_cvg834g
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/netgear_dg834gt-pn
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := NETGEAR
|
|
|
|
DEVICE_MODEL := DG834GT
|
|
|
|
DEVICE_ALT0_VENDOR := NETGEAR
|
|
|
|
DEVICE_ALT0_MODEL := DG834PN
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96348GW-10
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6348
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(ATH5K_PACKAGES)
|
2019-08-16 10:24:13 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += netgear_dg834gt-pn
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/netgear_dg834g-v4
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := NETGEAR
|
|
|
|
DEVICE_MODEL := DG834G
|
|
|
|
DEVICE_VARIANT := v4
|
2016-05-24 19:09:19 +00:00
|
|
|
IMAGES :=
|
|
|
|
CFE_BOARD_ID := 96348W3
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6348
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES)
|
2019-08-16 10:24:13 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += netgear_dg834g-v4
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/netgear_dgnd3700-v1
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm63xx_netgear)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_MODEL := DGND3700
|
|
|
|
DEVICE_VARIANT := v1
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96368MVWG
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6368
|
2016-06-21 12:17:02 +00:00
|
|
|
BLOCK_SIZE := 0x20000
|
2016-05-24 19:09:19 +00:00
|
|
|
NETGEAR_BOARD_ID := U12L144T01_NETGEAR_NEWLED
|
|
|
|
NETGEAR_REGION := 1
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES) $(USB2_PACKAGES)
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += netgear_dgnd3700-v1
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/netgear_dgnd3800b
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm63xx_netgear)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_MODEL := DGND3800B
|
2019-12-29 00:55:54 +00:00
|
|
|
DEVICE_DTS := bcm6368-netgear-dgnd3700-v1
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96368MVWG
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6368
|
2016-06-21 12:17:02 +00:00
|
|
|
BLOCK_SIZE := 0x20000
|
2016-05-24 19:09:19 +00:00
|
|
|
NETGEAR_BOARD_ID := U12L144T11_NETGEAR_NEWLED
|
|
|
|
NETGEAR_REGION := 1
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES) $(USB2_PACKAGES)
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += netgear_dgnd3800b
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/netgear_evg2000
|
2016-05-22 22:56:23 +00:00
|
|
|
$(Device/bcm63xx_netgear)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_MODEL := EVG2000
|
2016-05-22 22:56:23 +00:00
|
|
|
CFE_BOARD_ID := 96369PVG
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6368
|
2016-06-21 12:17:02 +00:00
|
|
|
BLOCK_SIZE := 0x20000
|
2016-05-22 22:56:23 +00:00
|
|
|
NETGEAR_BOARD_ID := U12H154T90_NETGEAR
|
|
|
|
NETGEAR_REGION := 1
|
2020-01-05 12:14:43 +00:00
|
|
|
SOC := bcm6369
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES) $(USB2_PACKAGES)
|
2016-05-22 22:56:23 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += netgear_evg2000
|
2016-05-22 22:56:23 +00:00
|
|
|
|
2016-05-24 19:09:19 +00:00
|
|
|
### NuCom ###
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/nucom_r5010un-v2
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := NuCom
|
|
|
|
DEVICE_MODEL := R5010UN
|
|
|
|
DEVICE_VARIANT := v2
|
2016-06-21 11:53:45 +00:00
|
|
|
IMAGES += sysupgrade.bin
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96328ang
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6328
|
2016-06-21 11:53:45 +00:00
|
|
|
FLASH_MB := 16
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES)
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += nucom_r5010un-v2
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2016-12-03 14:51:05 +00:00
|
|
|
### Observa ###
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/observa_vh4032n
|
2016-12-03 14:51:05 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Observa
|
|
|
|
DEVICE_MODEL := VH4032N
|
2016-12-03 14:51:05 +00:00
|
|
|
IMAGES += sysupgrade.bin
|
|
|
|
CFE_BOARD_ID := 96368VVW
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6368
|
2016-12-03 14:51:05 +00:00
|
|
|
BLOCK_SIZE := 0x20000
|
|
|
|
FLASH_MB := 32
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES) $(USB2_PACKAGES)
|
2016-12-03 14:51:05 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += observa_vh4032n
|
2016-12-03 14:51:05 +00:00
|
|
|
|
2016-05-24 19:09:19 +00:00
|
|
|
### Pirelli ###
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/pirelli_a226g
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Pirelli
|
|
|
|
DEVICE_MODEL := A226G
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := DWV-S0
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6358
|
2016-06-21 12:17:02 +00:00
|
|
|
CFE_EXTRAS += --signature2 IMAGE --tag-version 8
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES) $(USB2_PACKAGES)
|
2023-05-20 06:37:45 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += pirelli_a226g
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/pirelli_a226m
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Pirelli
|
|
|
|
DEVICE_MODEL := A226M
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := DWV-S0
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6358
|
2016-06-21 12:17:02 +00:00
|
|
|
CFE_EXTRAS += --signature2 IMAGE --tag-version 8
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(USB2_PACKAGES)
|
2023-05-20 06:37:45 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += pirelli_a226m
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/pirelli_a226m-fwb
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Pirelli
|
|
|
|
DEVICE_MODEL := A226M-FWB
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := DWV-S0
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6358
|
2016-06-21 12:17:02 +00:00
|
|
|
CFE_EXTRAS += --signature2 IMAGE --tag-version 8
|
|
|
|
BLOCK_SIZE := 0x20000
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(USB2_PACKAGES)
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += pirelli_a226m-fwb
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/pirelli_agpf-s0
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Pirelli
|
|
|
|
DEVICE_MODEL := Alice Gate VoIP 2 Plus Wi-Fi AGPF-S0
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := AGPF-S0
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6358
|
2016-06-21 12:17:02 +00:00
|
|
|
CFE_EXTRAS += --signature2 IMAGE --tag-version 8
|
|
|
|
BLOCK_SIZE := 0x20000
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES) $(USB2_PACKAGES)
|
2023-05-20 06:37:45 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += pirelli_agpf-s0
|
2016-05-24 19:09:19 +00:00
|
|
|
|
|
|
|
### Sagem ###
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/sagem_fast-2404
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Sagemcom
|
|
|
|
DEVICE_MODEL := F@st 2404
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := F@ST2404
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6348
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES)
|
2019-08-16 10:24:13 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += sagem_fast-2404
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/sagem_fast-2504n
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Sagemcom
|
|
|
|
DEVICE_MODEL := F@st 2504N
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := F@ST2504n
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6362
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES)
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += sagem_fast-2504n
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/sagem_fast-2604
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Sagemcom
|
|
|
|
DEVICE_MODEL := F@st 2604
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := F@ST2604
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6348
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES)
|
2019-08-16 10:24:13 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += sagem_fast-2604
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/sagem_fast-2704n
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Sagemcom
|
|
|
|
DEVICE_MODEL := F@st 2704N
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := F@ST2704N
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6318
|
2016-06-21 11:53:45 +00:00
|
|
|
FLASH_MB := 8
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES) $(USB2_PACKAGES)
|
2023-05-20 06:37:45 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += sagem_fast-2704n
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/sagem_fast-2704-v2
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Sagemcom
|
2019-12-29 00:55:54 +00:00
|
|
|
DEVICE_MODEL := F@st 2704
|
|
|
|
DEVICE_VARIANT := V2
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := F@ST2704V2
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6328
|
2016-06-21 11:53:45 +00:00
|
|
|
FLASH_MB := 8
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES) $(USB2_PACKAGES)
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += sagem_fast-2704-v2
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2017-08-31 20:22:37 +00:00
|
|
|
### Sercomm ###
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/sercomm_ad1018-nor
|
2017-08-31 20:22:37 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Sercomm
|
|
|
|
DEVICE_MODEL := AD1018
|
|
|
|
DEVICE_VARIANT := SPI flash mod
|
2017-08-31 20:22:37 +00:00
|
|
|
CFE_BOARD_ID := 96328avngr
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6328
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES) $(USB2_PACKAGES)
|
2017-08-31 20:22:37 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += sercomm_ad1018-nor
|
2017-08-31 20:22:37 +00:00
|
|
|
|
2016-05-24 19:09:19 +00:00
|
|
|
### SFR ###
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/sfr_neufbox-4-sercomm-r0
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := SFR
|
2019-12-30 22:12:53 +00:00
|
|
|
DEVICE_MODEL := Neufbox 4
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VARIANT := Sercomm
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96358VW
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6358
|
2017-11-08 17:40:37 +00:00
|
|
|
CFE_EXTRAS += --rsa-signature "$(VERSION_DIST)-$(firstword $(subst -,$(space),$(REVISION)))"
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES) $(USB2_PACKAGES)
|
2023-05-20 06:37:45 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += sfr_neufbox-4-sercomm-r0
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/sfr_neufbox-4-foxconn-r1
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := SFR
|
2019-12-30 22:12:53 +00:00
|
|
|
DEVICE_MODEL := Neufbox 4
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VARIANT := Foxconn
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96358VW
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6358
|
2017-11-08 17:40:37 +00:00
|
|
|
CFE_EXTRAS += --rsa-signature "$(VERSION_DIST)-$(firstword $(subst -,$(space),$(REVISION)))"
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES) $(USB2_PACKAGES)
|
2023-05-20 06:37:45 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += sfr_neufbox-4-foxconn-r1
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/sfr_neufbox-6-sercomm-r0
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := SFR
|
2019-12-30 22:12:53 +00:00
|
|
|
DEVICE_MODEL := Neufbox 6
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := NB6-SER-r0
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6362
|
2017-11-08 17:40:37 +00:00
|
|
|
CFE_EXTRAS += --rsa-signature "$(VERSION_DIST)-$(firstword $(subst -,$(space),$(REVISION)))"
|
2020-01-05 12:14:43 +00:00
|
|
|
SOC := bcm6361
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(USB2_PACKAGES)
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += sfr_neufbox-6-sercomm-r0
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/sky_sr102
|
2018-07-14 21:53:47 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := SKY
|
|
|
|
DEVICE_MODEL := SR102
|
2018-07-14 21:53:47 +00:00
|
|
|
CFE_BOARD_ID := BSKYB_63168
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 63268
|
2018-07-14 21:53:47 +00:00
|
|
|
CFE_EXTRAS += --rsa-signature "$(VERSION_DIST)-$(firstword $(subst -,$(space),$(REVISION)))"
|
2020-01-05 12:14:43 +00:00
|
|
|
SOC := bcm63168
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(USB2_PACKAGES)
|
2018-07-14 21:53:47 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += sky_sr102
|
2018-07-14 21:53:47 +00:00
|
|
|
|
2016-05-24 19:09:19 +00:00
|
|
|
### T-Com ###
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/t-com_speedport-w-303v
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := T-Com
|
|
|
|
DEVICE_MODEL := Speedport W 303V
|
2016-05-24 19:09:19 +00:00
|
|
|
IMAGES := factory.bin sysupgrade.bin
|
2016-06-21 11:53:45 +00:00
|
|
|
IMAGE/factory.bin := cfe-spw303v-bin --pad 4 | spw303v-bin | xor-image
|
2016-05-24 19:09:19 +00:00
|
|
|
IMAGE/sysupgrade.bin := cfe-spw303v-bin | spw303v-bin
|
|
|
|
CFE_BOARD_ID := 96358-502V
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6358
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES)
|
2023-05-20 06:37:45 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += t-com_speedport-w-303v
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/t-com_speedport-w-500v
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := T-Com
|
|
|
|
DEVICE_MODEL := Speedport W 500V
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96348GW
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6348
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES)
|
2019-08-16 10:24:13 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += t-com_speedport-w-500v
|
2016-05-24 19:09:19 +00:00
|
|
|
|
bcm63xx: add support for Technicolor TG582n Telecom Italia branded
Technicolor TG582n Telecom Italia branded a.k.a.
Telecom Italia ADSL2+ Wi-Fi N (AGTWI)
has the same PCB as the unbranded Technicolor TG582n with LEDs
connected to different GPIO PINs in active low configuration and
different LED names. It has a PCB similar to the OpenWrt's ADB P.DG A4001N1 one.
Hardware:
* Board ID: DANT-V
* SoC: Broadcom BCM6328 (rev b0) @ 320MHz, CPU BMIPS4350
* RAM DDR2: 64 Mbyte - EtronTech EM68B16CWQD-25H
* Serial flash: 16 Mbyte - Spansion FL 128SAIF00
* Ethernet: 4x Ethernet 10/100 baseT
* Wifi 2.4GHz: Broadcom Corporation BCM43227 Wireless Network Adapter (rev 30)
* LEDs: 2x Power, 1x ADSL, 2x Internet, 2x Wi-Fi, 2x Service, 4x ethernet
* Buttons: 1x Reset, 1x WPS (named WiFi/LED)
* UART: 1x TTL 115200n8, VCC GND TX RX, on J3 connector (short R62 and R63)
Installation via CFE:
* Stock CFE has to be overwritten with a generic 6328 one that can upload
.bin images with no signature check (cfe6328_configured.bin)
* Connect a serial port to the board
* Stop the CFE boot process after power on by pressing enter
* Set static IP 192.168.2.10 and subnet mask 255.255.255.0
* Navigate to http://192.168.2.50/
* Upload the OpenWrt image file
PCB: |GPIO: |TG582n: |AGTWI:
LED2R |488(08) |red Power |red Power
LED2G |484(04) |green Power |green Power
LED10R |486(06) | |missing R85 end LED
LED13G |485(05) |green Ethernet |green ADSL
LED11R |494(14) | |red Internet
LED14G |491(11) |green Broadband |green Internet
LED5R |487(07) |red Internet |red Wi-Fi
LED5G |481(01) |green Internet |green Wi-Fi
LED12R |498(18) | |red Service
LED12G |499(19) | |green Service
LED6R |482(02) |red Wi-Fi |missing R108 end LED
LED6G |483(03) |green Wi-Fi |missing R107 end LED
LED7R |490(10) |red WPS |missing R91 end LED
LED7G |489(09) |green WPS |missing R92 end LED
LED4 |508(28) |ethernet port 4 |ethernet port 4
LED3 |507(27) |ethernet port 3 |ethernet port 3
LED9 |506(26) |ethernet port 2 |ethernet port 2
LED8 |505(25) |ethernet port 1 |ethernet port 1
SW3 |503(23) |key Reset |key Reset
SW5 |504(24) |key WPS |key Wi-Fi/LED
SW4 |495(15) |key Wi-Fi |missing R127 end key
SW6 |493(13) | |missing R171 end key
SW1 |492(12) | |missing R1 end key
Signed-off-by: Daniele Castro <danielecastro@hotmail.it>
[DT fixes, base-files fixes and device variant]
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
2020-09-08 15:16:06 +00:00
|
|
|
### Technicolor ###
|
bcm63xx: add support for Technicolor TG582n
Technicolor TG582n has a similar PCB as the OpenWrt's ADB P.DG A4001N1
with LEDs connected to different GPIO PINs in active low configuration.
Hardware:
* Board ID: DANT-1
* SoC: Broadcom BCM6328 (rev b0) @ 320MHz, CPU BMIPS4350
* RAM DDR2: 64 Mbyte - Winbond W9751G6KB-25
* Serial flash: 16 Mbyte - MXIC MX25L6445EMI
* Ethernet: 4x Ethernet 10/100 baseT
* Wifi 2.4GHz: Broadcom Corporation BCM43227 Wireless Network Adapter (rev 30)
* LEDs: 2x Power, 1x Ethernet, 1x Broadband, 2x Wi-Fi, 2x WPS, 4x ethernet
* Buttons: 1x Reset, 1x WPS, 1x WiFi
* UART: 1x TTL 115200n8, VCC GND TX RX, on J3 connector (short R62 and R63)
Installation via CFE:
* Stock CFE has to be overwritten with a generic 6328 one that can upload
.bin images with no signature check (cfe6328_configured.bin)
* Connect a serial port to the board
* Stop the CFE boot process after power on by pressing enter
* Set static IP 192.168.2.10 and subnet mask 255.255.255.0
* Navigate to http://192.168.2.50/
* Upload the OpenWrt image file
PCB: |GPIO: |TG582n:
LED2R |488(08) |red Power
LED2G |484(04) |green Power
LED10R |486(06) |
LED13G |485(05) |green Ethernet
LED11R |494(14) |
LED14G |491(11) |green Broadband
LED5R |487(07) |red Internet
LED5G |481(01) |green Internet
LED12R |498(18) |
LED12G |499(19) |
LED6R |482(02) |red Wi-Fi
LED6G |483(03) |green Wi-Fi
LED7R |490(10) |red WPS
LED7G |489(09) |green WPS
LED4 |508(28) |ethernet port 4
LED3 |507(27) |ethernet port 3
LED9 |506(26) |ethernet port 2
LED8 |505(25) |ethernet port 1
SW3 |503(23) |key Reset
SW5 |504(24) |key WPS
SW4 |495(15) |key Wi-Fi
SW6 |493(13) |
SW1 |492(12) |
Signed-off-by: Daniele Castro <danielecastro@hotmail.it>
[Fix base-files, refresh patch]
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
2020-09-10 19:14:11 +00:00
|
|
|
define Device/technicolor_tg582n
|
|
|
|
$(Device/bcm63xx)
|
|
|
|
DEVICE_VENDOR := Technicolor
|
|
|
|
DEVICE_MODEL := TG582n
|
|
|
|
IMAGES += sysupgrade.bin
|
|
|
|
CFE_BOARD_ID := DANT-1
|
|
|
|
CHIP_ID := 6328
|
|
|
|
FLASH_MB := 16
|
|
|
|
DEVICE_PACKAGES := $(USB2_PACKAGES) $(B43_PACKAGES)
|
|
|
|
endef
|
|
|
|
TARGET_DEVICES += technicolor_tg582n
|
|
|
|
|
bcm63xx: add support for Technicolor TG582n Telecom Italia branded
Technicolor TG582n Telecom Italia branded a.k.a.
Telecom Italia ADSL2+ Wi-Fi N (AGTWI)
has the same PCB as the unbranded Technicolor TG582n with LEDs
connected to different GPIO PINs in active low configuration and
different LED names. It has a PCB similar to the OpenWrt's ADB P.DG A4001N1 one.
Hardware:
* Board ID: DANT-V
* SoC: Broadcom BCM6328 (rev b0) @ 320MHz, CPU BMIPS4350
* RAM DDR2: 64 Mbyte - EtronTech EM68B16CWQD-25H
* Serial flash: 16 Mbyte - Spansion FL 128SAIF00
* Ethernet: 4x Ethernet 10/100 baseT
* Wifi 2.4GHz: Broadcom Corporation BCM43227 Wireless Network Adapter (rev 30)
* LEDs: 2x Power, 1x ADSL, 2x Internet, 2x Wi-Fi, 2x Service, 4x ethernet
* Buttons: 1x Reset, 1x WPS (named WiFi/LED)
* UART: 1x TTL 115200n8, VCC GND TX RX, on J3 connector (short R62 and R63)
Installation via CFE:
* Stock CFE has to be overwritten with a generic 6328 one that can upload
.bin images with no signature check (cfe6328_configured.bin)
* Connect a serial port to the board
* Stop the CFE boot process after power on by pressing enter
* Set static IP 192.168.2.10 and subnet mask 255.255.255.0
* Navigate to http://192.168.2.50/
* Upload the OpenWrt image file
PCB: |GPIO: |TG582n: |AGTWI:
LED2R |488(08) |red Power |red Power
LED2G |484(04) |green Power |green Power
LED10R |486(06) | |missing R85 end LED
LED13G |485(05) |green Ethernet |green ADSL
LED11R |494(14) | |red Internet
LED14G |491(11) |green Broadband |green Internet
LED5R |487(07) |red Internet |red Wi-Fi
LED5G |481(01) |green Internet |green Wi-Fi
LED12R |498(18) | |red Service
LED12G |499(19) | |green Service
LED6R |482(02) |red Wi-Fi |missing R108 end LED
LED6G |483(03) |green Wi-Fi |missing R107 end LED
LED7R |490(10) |red WPS |missing R91 end LED
LED7G |489(09) |green WPS |missing R92 end LED
LED4 |508(28) |ethernet port 4 |ethernet port 4
LED3 |507(27) |ethernet port 3 |ethernet port 3
LED9 |506(26) |ethernet port 2 |ethernet port 2
LED8 |505(25) |ethernet port 1 |ethernet port 1
SW3 |503(23) |key Reset |key Reset
SW5 |504(24) |key WPS |key Wi-Fi/LED
SW4 |495(15) |key Wi-Fi |missing R127 end key
SW6 |493(13) | |missing R171 end key
SW1 |492(12) | |missing R1 end key
Signed-off-by: Daniele Castro <danielecastro@hotmail.it>
[DT fixes, base-files fixes and device variant]
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
2020-09-08 15:16:06 +00:00
|
|
|
define Device/technicolor_tg582n-telecom-italia
|
|
|
|
$(Device/bcm63xx)
|
|
|
|
DEVICE_VENDOR := Technicolor
|
|
|
|
DEVICE_MODEL := TG582n
|
|
|
|
DEVICE_VARIANT := Telecom Italia
|
|
|
|
IMAGES += sysupgrade.bin
|
|
|
|
CFE_BOARD_ID := DANT-V
|
|
|
|
CHIP_ID := 6328
|
|
|
|
FLASH_MB := 16
|
|
|
|
DEVICE_PACKAGES := $(USB2_PACKAGES) $(B43_PACKAGES)
|
|
|
|
endef
|
|
|
|
TARGET_DEVICES += technicolor_tg582n-telecom-italia
|
|
|
|
|
2016-05-24 19:09:19 +00:00
|
|
|
### Tecom ###
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/tecom_gw6000
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Tecom
|
|
|
|
DEVICE_MODEL := GW6000
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96348GW
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6348
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(BRCMWL_PACKAGES) $(USB1_PACKAGES)
|
2020-02-28 11:00:29 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += tecom_gw6000
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/tecom_gw6200
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Tecom
|
|
|
|
DEVICE_MODEL := GW6200
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96348GW
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6348
|
2016-06-21 12:17:02 +00:00
|
|
|
CFE_EXTRAS += --rsa-signature "$(shell printf '\x99')"
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(BRCMWL_PACKAGES) $(USB1_PACKAGES)
|
2020-02-28 11:00:29 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += tecom_gw6200
|
2016-05-24 19:09:19 +00:00
|
|
|
|
|
|
|
### Telsey ###
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/telsey_cpva502plus
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Telsey
|
|
|
|
DEVICE_MODEL := CPVA502+
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := CPVA502+
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6348
|
2017-02-14 15:36:55 +00:00
|
|
|
CFE_EXTRAS += --signature "Telsey Tlc" --signature2 "99.99.999"
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES)
|
2019-08-16 10:24:13 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += telsey_cpva502plus
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/telsey_cpva642
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Telsey
|
|
|
|
DEVICE_MODEL := CPVA642-type (CPA-ZNTE60T)
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := CPVA642
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6358
|
2016-06-21 12:17:02 +00:00
|
|
|
CFE_EXTRAS += --signature "Telsey Tlc" --signature2 "99.99.999" --second-image-flag "0"
|
2016-06-21 11:53:45 +00:00
|
|
|
FLASH_MB := 8
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(RT63_PACKAGES) $(USB2_PACKAGES)
|
2023-05-20 06:37:45 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += telsey_cpva642
|
2016-05-24 19:09:19 +00:00
|
|
|
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/telsey_magic
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := Alice
|
|
|
|
DEVICE_MODEL := W-Gate
|
|
|
|
DEVICE_ALT0_VENDOR := Telsey
|
|
|
|
DEVICE_ALT0_MODEL := MAGIC
|
2016-05-24 19:09:19 +00:00
|
|
|
IMAGES :=
|
|
|
|
CFE_BOARD_ID := MAGIC
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6348
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(RT63_PACKAGES)
|
2019-08-16 10:24:13 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += telsey_magic
|
2016-05-24 19:09:19 +00:00
|
|
|
|
|
|
|
### TP-Link ###
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/tp-link_td-w8900gb
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := TP-Link
|
|
|
|
DEVICE_MODEL := TD-W8900GB
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96348GW-11
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6348
|
2016-06-21 12:17:02 +00:00
|
|
|
CFE_EXTRAS += --rsa-signature "$(shell printf 'PRID\x89\x10\x00\x02')"
|
|
|
|
IMAGE_OFFSET := 0x20000
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES)
|
2019-08-16 10:24:13 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += tp-link_td-w8900gb
|
2016-05-24 19:09:19 +00:00
|
|
|
|
|
|
|
### USRobotics ###
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/usrobotics_usr9108
|
2020-06-03 07:00:09 +00:00
|
|
|
$(Device/bcm63xx-legacy)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := USRobotics
|
2019-12-30 22:12:53 +00:00
|
|
|
DEVICE_MODEL := USR9108
|
2016-05-24 19:09:19 +00:00
|
|
|
CFE_BOARD_ID := 96348GW-A
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6348
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES) $(USB1_PACKAGES)
|
2019-08-16 10:24:13 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += usrobotics_usr9108
|
2016-05-24 19:09:19 +00:00
|
|
|
|
|
|
|
### ZyXEL ###
|
2019-12-29 00:55:54 +00:00
|
|
|
define Device/zyxel_p870hw-51a-v2
|
2016-05-24 19:09:19 +00:00
|
|
|
$(Device/bcm63xx)
|
2019-09-11 19:15:01 +00:00
|
|
|
DEVICE_VENDOR := ZyXEL
|
|
|
|
DEVICE_MODEL := P870HW-51a
|
|
|
|
DEVICE_VARIANT := v2
|
2016-05-24 19:09:19 +00:00
|
|
|
IMAGES := factory.bin
|
|
|
|
IMAGE/factory.bin := cfe-bin | zyxel-bin
|
|
|
|
CFE_BOARD_ID := 96368VVW
|
2020-05-20 07:21:34 +00:00
|
|
|
CHIP_ID := 6368
|
2016-06-21 12:17:02 +00:00
|
|
|
CFE_EXTRAS += --rsa-signature "ZyXEL" --signature "ZyXEL_0001"
|
2019-12-30 19:37:35 +00:00
|
|
|
DEVICE_PACKAGES := $(B43_PACKAGES)
|
2020-02-28 11:00:29 +00:00
|
|
|
DEFAULT := n
|
2016-05-24 19:09:19 +00:00
|
|
|
endef
|
2019-12-29 00:55:54 +00:00
|
|
|
TARGET_DEVICES += zyxel_p870hw-51a-v2
|