mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-30 10:39:04 +00:00
71a6f45fdf
The Netgear EVG2000 is a wifi gigabit router, 2.4 GHz single band with two internal antennas integrated in the main PCB. Hardware: - SoC: Broadcom BCM6369 - CPU: dual core BMIPS4350 V3.1 @400Mhz - RAM: 64 MB DDR - Flash: 16 MB parallel NOR - LAN switch: Broadcom BCM53115, 5x 1Gbit - Wifi 2.4 GHz: Broadcom BCM4322 802.11bgn - USB: 2x 2.0 - Buttons: 2x, 1 reset - LEDs: 10x - FXS: 2x - UART: yes Installation via CFE web UI: 1. Power off the router and make a temporal TX-RX shortcircuit on the serial pins. 2. Power on the router and wait 3 or more seconds 3. Remove the TX-RX shortcircuit 4. Browse to http://192.168.1.1 or http://192.168.0.1 and upload the firmware 5. Wait a few minutes for it to finish Signed-off-by: Daniel González Cabanelas <dgcbueu@gmail.com>
75 lines
1.8 KiB
Makefile
75 lines
1.8 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
define Device/comtrend_vr-3025u
|
|
$(Device/bcm63xx-cfe)
|
|
DEVICE_VENDOR := Comtrend
|
|
DEVICE_MODEL := VR-3025u
|
|
CHIP_ID := 6368
|
|
CFE_BOARD_ID := 96368M-1541N
|
|
BLOCKSIZE := 0x20000
|
|
FLASH_MB := 32
|
|
DEVICE_PACKAGES += $(USB2_PACKAGES) \
|
|
$(B43_PACKAGES) broadcom-43222-sprom \
|
|
kmod-leds-gpio
|
|
endef
|
|
TARGET_DEVICES += comtrend_vr-3025u
|
|
|
|
define Device/netgear_dgnd3700-v1
|
|
$(Device/bcm63xx_netgear)
|
|
DEVICE_VENDOR := NETGEAR
|
|
DEVICE_MODEL := DGND3700
|
|
DEVICE_VARIANT := v1
|
|
CFE_BOARD_ID := 96368MVWG
|
|
CHIP_ID := 6368
|
|
BLOCKSIZE := 0x20000
|
|
NETGEAR_BOARD_ID := U12L144T01_NETGEAR_NEWLED
|
|
NETGEAR_REGION := 1
|
|
DEVICE_PACKAGES += $(USB2_PACKAGES) \
|
|
$(B43_PACKAGES)
|
|
endef
|
|
TARGET_DEVICES += netgear_dgnd3700-v1
|
|
|
|
define Device/netgear_dgnd3800b
|
|
$(Device/bcm63xx_netgear)
|
|
DEVICE_VENDOR := NETGEAR
|
|
DEVICE_MODEL := DGND3800B
|
|
CFE_BOARD_ID := 96368MVWG
|
|
CHIP_ID := 6368
|
|
BLOCKSIZE := 0x20000
|
|
NETGEAR_BOARD_ID := U12L144T11_NETGEAR_NEWLED
|
|
NETGEAR_REGION := 1
|
|
DEVICE_PACKAGES += $(USB2_PACKAGES) \
|
|
$(B43_PACKAGES)
|
|
endef
|
|
TARGET_DEVICES += netgear_dgnd3800b
|
|
|
|
define Device/netgear_evg2000
|
|
$(Device/bcm63xx_netgear)
|
|
DEVICE_MODEL := EVG2000
|
|
CFE_BOARD_ID := 96369PVG
|
|
CHIP_ID := 6368
|
|
SOC := bcm6369
|
|
BLOCKSIZE := 0x20000
|
|
NETGEAR_BOARD_ID := U12H154T90_NETGEAR
|
|
NETGEAR_REGION := 1
|
|
DEVICE_PACKAGES += $(USB2_PACKAGES) \
|
|
$(B43_PACKAGES) broadcom-4322-sprom \
|
|
kmod-leds-gpio
|
|
endef
|
|
TARGET_DEVICES += netgear_evg2000
|
|
|
|
define Device/observa_vh4032n
|
|
$(Device/bcm63xx-cfe)
|
|
DEVICE_VENDOR := Observa
|
|
DEVICE_MODEL := VH4032N
|
|
IMAGES += sysupgrade.bin
|
|
CFE_BOARD_ID := 96368VVW
|
|
CHIP_ID := 6368
|
|
BLOCKSIZE := 0x20000
|
|
FLASH_MB := 32
|
|
DEVICE_PACKAGES += $(USB2_PACKAGES) \
|
|
$(B43_PACKAGES) broadcom-43222-sprom \
|
|
kmod-leds-gpio
|
|
endef
|
|
TARGET_DEVICES += observa_vh4032n
|