mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-24 13:28:33 +00:00
ac6832110a
The NuCom R5010UNv2 is a wifi fast ethernet router, 2.4 GHz single band
with two external antennas.
Hardware:
- SoC: Broadcom BCM6328
- CPU: single core BMIPS4350 V7.5 @ 320Mhz
- RAM: 64 MB DDR2
- Flash: 16 MB SPI NOR
- Ethernet LAN: 4x 100Mbit
- Wifi 2.4 GHz: Broadcom BCM43217 802.11bgn (onboard)
- USB: 1x 2.0
- Buttons: 2x
- ADSL: yes, unsupported
- LEDs: 7x
- UART: yes
Installation via CFE web UI:
1. Power off the router and press the RESET button
2. Power on the router and wait 12 or more seconds
3. Release the RESET button
4. Browse to http://192.168.1.1 and upload the Openwrt cfe firmware
5. Wait a few minutes for it to finish
Signed-off-by: Daniel González Cabanelas <dgcbueu@gmail.com>
(cherry picked from commit 6cb3328b4f
)
59 lines
1.4 KiB
Makefile
59 lines
1.4 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
define Device/comtrend_ar-5381u
|
|
$(Device/bcm63xx-cfe)
|
|
DEVICE_VENDOR := Comtrend
|
|
DEVICE_MODEL := AR-5381u
|
|
CHIP_ID := 6328
|
|
CFE_BOARD_ID := 96328A-1241N
|
|
FLASH_MB := 16
|
|
DEVICE_PACKAGES += $(USB2_PACKAGES) \
|
|
$(B43_PACKAGES) broadcom-43225-sprom \
|
|
kmod-leds-bcm6328
|
|
endef
|
|
TARGET_DEVICES += comtrend_ar-5381u
|
|
|
|
define Device/comtrend_ar-5387un
|
|
$(Device/bcm63xx-cfe)
|
|
DEVICE_VENDOR := Comtrend
|
|
DEVICE_MODEL := AR-5387un
|
|
CHIP_ID := 6328
|
|
CFE_BOARD_ID := 96328A-1441N1
|
|
FLASH_MB := 16
|
|
DEVICE_PACKAGES += $(USB2_PACKAGES) \
|
|
$(B43_PACKAGES) broadcom-43225-sprom \
|
|
kmod-leds-bcm6328
|
|
endef
|
|
TARGET_DEVICES += comtrend_ar-5387un
|
|
|
|
define Device/nucom_r5010unv2
|
|
$(Device/bcm63xx-cfe)
|
|
DEVICE_VENDOR := NuCom
|
|
DEVICE_MODEL := R5010UNv2
|
|
CHIP_ID := 6328
|
|
CFE_BOARD_ID := 96328ang
|
|
FLASH_MB := 16
|
|
DEVICE_PACKAGES += $(USB2_PACKAGES) \
|
|
$(B43_PACKAGES) broadcom-43217-sprom \
|
|
kmod-leds-bcm6328
|
|
endef
|
|
TARGET_DEVICES += nucom_r5010unv2
|
|
|
|
define Device/sercomm_ad1018
|
|
$(Device/sercomm-nand)
|
|
DEVICE_VENDOR := Sercomm
|
|
DEVICE_MODEL := AD1018
|
|
CHIP_ID := 6328
|
|
BLOCKSIZE := 128k
|
|
PAGESIZE := 2048
|
|
SUBPAGESIZE := 512
|
|
VID_HDR_OFFSET := 2048
|
|
DEVICE_PACKAGES += $(USB2_PACKAGES) \
|
|
$(B43_PACKAGES) broadcom-43217-sprom \
|
|
kmod-leds-bcm6328
|
|
SERCOMM_FSVER := 1001
|
|
SERCOMM_HWVER := 1415153
|
|
SERCOMM_SWVER := 3013
|
|
endef
|
|
TARGET_DEVICES += sercomm_ad1018
|