mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 15:02:32 +00:00
66e1bef8f7
The Comtrend VG-8050 is a wifi gigabit ethernet router, 2.4 GHz single band with
two external antennas.
Hardware:
- SoC: Broadcom BCM63169
- CPU: dual core BMIPS4350 @ 400Mhz
- RAM: 128 MB DDR
- Flash: 128 MB NAND
- LAN switch: Broadcom BCM53125, 5x 1Gbit
- Wifi 2.4 GHz: SoC (BCM63268) 802.11bgn
- USB: 1x 2.0 (optional)
- Buttons: 2x (reset)
- LEDs: yes
- UART: yes
Installation via CFE web UI:
1. Power off the router.
2. Press reset button near the power switch.
3. Keep it pressed while powering up during ~20+ seconds.
4. Browse to http://192.168.1.1 and upload the firmware.
5. Wait a few minutes for it to finish.
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
(cherry picked from commit 47cc09aa7a
)
103 lines
2.6 KiB
Makefile
103 lines
2.6 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
define Device/comtrend_vg-8050
|
|
$(Device/bcm63xx-nand)
|
|
DEVICE_VENDOR := Comtrend
|
|
DEVICE_MODEL := VG-8050
|
|
CHIP_ID := 63268
|
|
SOC := bcm63169
|
|
CFE_RAM_FILE := comtrend,vg-8050/cferam.000
|
|
CFE_RAM_JFFS2_NAME := cferam.000
|
|
BLOCKSIZE := 128k
|
|
PAGESIZE := 2048
|
|
SUBPAGESIZE := 512
|
|
VID_HDR_OFFSET := 2048
|
|
DEVICE_PACKAGES += $(USB2_PACKAGES) \
|
|
kmod-leds-bcm6328
|
|
CFE_WFI_FLASH_TYPE := 3
|
|
CFE_WFI_VERSION := 0x5732
|
|
endef
|
|
TARGET_DEVICES += comtrend_vg-8050
|
|
|
|
define Device/comtrend_vr-3032u
|
|
$(Device/bcm63xx-nand)
|
|
DEVICE_VENDOR := Comtrend
|
|
DEVICE_MODEL := VR-3032u
|
|
CHIP_ID := 63268
|
|
SOC := bcm63168
|
|
CFE_RAM_FILE := comtrend,vr-3032u/cferam.000
|
|
CFE_RAM_JFFS2_NAME := cferam.000
|
|
BLOCKSIZE := 128k
|
|
PAGESIZE := 2048
|
|
SUBPAGESIZE := 512
|
|
VID_HDR_OFFSET := 2048
|
|
DEVICE_PACKAGES += $(USB2_PACKAGES) \
|
|
kmod-leds-bcm6328
|
|
CFE_WFI_FLASH_TYPE := 3
|
|
CFE_WFI_VERSION := 0x5732
|
|
endef
|
|
TARGET_DEVICES += comtrend_vr-3032u
|
|
|
|
define Device/sercomm_h500-s-lowi
|
|
$(Device/sercomm-nand)
|
|
DEVICE_VENDOR := Sercomm
|
|
DEVICE_MODEL := H500-s
|
|
DEVICE_VARIANT := lowi
|
|
DEVICE_LOADADDR := $(KERNEL_LOADADDR)
|
|
KERNEL := kernel-bin | append-dtb | lzma | cfe-jffs2-kernel
|
|
CHIP_ID := 63268
|
|
SOC := bcm63167
|
|
BLOCKSIZE := 128k
|
|
PAGESIZE := 2048
|
|
SUBPAGESIZE := 512
|
|
VID_HDR_OFFSET := 2048
|
|
DEVICE_PACKAGES += $(USB2_PACKAGES) \
|
|
kmod-leds-bcm6328
|
|
SERCOMM_FSVER := 1001
|
|
SERCOMM_HWVER := 1434b31
|
|
SERCOMM_SWVER := 3305
|
|
endef
|
|
TARGET_DEVICES += sercomm_h500-s-lowi
|
|
|
|
define Device/sercomm_h500-s-vfes
|
|
$(Device/sercomm-nand)
|
|
DEVICE_VENDOR := Sercomm
|
|
DEVICE_MODEL := H500-s
|
|
DEVICE_VARIANT := vfes
|
|
DEVICE_LOADADDR := $(KERNEL_LOADADDR)
|
|
KERNEL := kernel-bin | append-dtb | lzma | cfe-jffs2-kernel
|
|
CHIP_ID := 63268
|
|
SOC := bcm63167
|
|
BLOCKSIZE := 128k
|
|
PAGESIZE := 2048
|
|
SUBPAGESIZE := 512
|
|
VID_HDR_OFFSET := 2048
|
|
DEVICE_PACKAGES += $(USB2_PACKAGES) \
|
|
kmod-leds-bcm6328
|
|
SERCOMM_FSVER := 1001
|
|
SERCOMM_HWVER := 142584b
|
|
SERCOMM_SWVER := 3417
|
|
endef
|
|
TARGET_DEVICES += sercomm_h500-s-vfes
|
|
|
|
define Device/sercomm_shg2500
|
|
$(Device/sercomm-nand)
|
|
DEVICE_VENDOR := Sercomm
|
|
DEVICE_MODEL := SHG2500
|
|
DEVICE_LOADADDR := $(KERNEL_LOADADDR)
|
|
KERNEL := kernel-bin | append-dtb | lzma | cfe-jffs2-kernel
|
|
CHIP_ID := 63268
|
|
SOC := bcm63168
|
|
BLOCKSIZE := 128k
|
|
PAGESIZE := 2048
|
|
SUBPAGESIZE := 512
|
|
VID_HDR_OFFSET := 2048
|
|
DEVICE_PACKAGES += $(USB2_PACKAGES) \
|
|
broadcom-4360-sprom \
|
|
kmod-i2c-gpio kmod-leds-sercomm-msp430
|
|
SERCOMM_FSVER := 1001
|
|
SERCOMM_HWVER := 1424e4a
|
|
SERCOMM_SWVER := 3207
|
|
endef
|
|
TARGET_DEVICES += sercomm_shg2500
|