From 23519edbcaa9cfd24b5a6fff44770f0fa9e13f3c Mon Sep 17 00:00:00 2001 From: INAGAKI Hiroshi Date: Tue, 7 Aug 2018 01:59:23 +0900 Subject: ath79: add support for Buffalo BHR-4GRV2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- include/image-commands.mk | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'include') diff --git a/include/image-commands.mk b/include/image-commands.mk index f7e6ba6aa6..143a042fa2 100644 --- a/include/image-commands.mk +++ b/include/image-commands.mk @@ -62,6 +62,14 @@ define Build/make-ras @mv $@.new $@ endef +define Build/mkbuffaloimg + $(STAGING_DIR_HOST)/bin/mkbuffaloimg -B $(BOARDNAME) \ + -R $$(($(subst k, * 1024,$(ROOTFS_SIZE)))) \ + -K $$(($(subst k, * 1024,$(KERNEL_SIZE)))) \ + -i $@ -o $@.new + mv $@.new $@ +endef + define Build/netgear-chk $(STAGING_DIR_HOST)/bin/mkchkimg \ -o $@.new \ -- cgit v1.2.3