23519edbca
Buffalo BHR-4GRV2 is a wired router, based on Qualcomm Atheros QCA9558. Ported from ar71xx target. Specification: - Qualcomm Atheros QCA9558 - 64 MB of RAM - 16 MB of Flash - 5x 10/100/1000 Ethernet - QCA8337N - 4x LEDs, 2x keys - UART header on PCB - Vcc, TX, RX, GND from LED side - 115200n8 Flash instruction using factory image: 1. Connect the computer to the LAN port of BHR-4GRV2 2. Connect power cable to BHR-4GRV2 and turn on it 3. Access to "http://192.168.12.1/" and open firmware update page ("ファームウェア更新") 4. Select the OpenWrt factory image and click update ("更新実行") button 5. Wait ~120 seconds to complete flashing Signed-off-by: INAGAKI Hiroshi <musashino.open@gmail.com>
24 lines
No EOL
1 KiB
Makefile
24 lines
No EOL
1 KiB
Makefile
define Device/bhr-4grv2
|
|
DEVICE_TITLE := Buffalo BHR-4GRV2
|
|
BOARDNAME := BHR-4GRV2
|
|
ROOTFS_SIZE := 14528k
|
|
KERNEL_SIZE := 1472k
|
|
IMAGE_SIZE := 16000k
|
|
MTDPARTS := spi0.0:256k(u-boot)ro,64k(u-boot-env)ro,14528k(rootfs),1472k(kernel),64k(art)ro,16000k@0x50000(firmware)
|
|
IMAGES := sysupgrade.bin factory.bin
|
|
IMAGE/sysupgrade.bin := append-rootfs | pad-rootfs | pad-to $$$$(ROOTFS_SIZE) | append-kernel | check-size $$$$(IMAGE_SIZE)
|
|
IMAGE/factory.bin := append-kernel | pad-to $$$$(KERNEL_SIZE) | append-rootfs | pad-rootfs | mkbuffaloimg
|
|
endef
|
|
TARGET_DEVICES += bhr-4grv2
|
|
|
|
define Device/zbt-we1526
|
|
DEVICE_TITLE := Zbtlink ZBT-WE1526
|
|
DEVICE_PACKAGES := kmod-usb-core kmod-usb2
|
|
BOARDNAME := ZBT-WE1526
|
|
IMAGE_SIZE := 16000k
|
|
KERNEL_SIZE := 1472k
|
|
ROOTFS_SIZE := 14528k
|
|
MTDPARTS := spi0.0:256k(u-boot)ro,64k(u-boot-env)ro,14528k(rootfs),1472k(kernel),64k(art)ro,16000k@0x50000(firmware)
|
|
IMAGE/sysupgrade.bin := append-rootfs | pad-rootfs | pad-to $$$$(ROOTFS_SIZE) | append-kernel | check-size $$$$(IMAGE_SIZE)
|
|
endef
|
|
TARGET_DEVICES += zbt-we1526
|