c68105c3b4
The Buffalo devices in ath79 share their image generation code, so let's create a shared Device definition for them. Since most of them use BUFFALO_HWVER := 3, this is moved as default to the shared definition as well. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
35 lines
938 B
Makefile
35 lines
938 B
Makefile
DEVICE_VARS += BUFFALO_PRODUCT BUFFALO_HWVER
|
|
|
|
define Build/buffalo-tag
|
|
$(eval product=$(word 1,$(1)))
|
|
$(eval hwver=$(word 2,$(1)))
|
|
$(STAGING_DIR_HOST)/bin/buffalo-tag \
|
|
-c 0x80041000 -d 0x801e8000 -w $(hwver) \
|
|
-a ath -v 1.99 -m 1.01 -f 1 \
|
|
-b $(product) -p $(product) \
|
|
-r M_ -l mlang8 \
|
|
-i $@ -o $@.new
|
|
mv $@.new $@
|
|
endef
|
|
|
|
define Build/buffalo-tftp-header
|
|
( \
|
|
echo -n -e "# Airstation Public Fmt1" | dd bs=32 count=1 conv=sync; \
|
|
dd if=$@; \
|
|
) > $@.new
|
|
mv $@.new $@
|
|
endef
|
|
|
|
|
|
define Device/buffalo_common
|
|
DEVICE_VENDOR := Buffalo
|
|
BUFFALO_PRODUCT :=
|
|
BUFFALO_HWVER := 3
|
|
IMAGES += factory.bin tftp.bin
|
|
IMAGE/default := append-kernel | pad-to $$$$(BLOCKSIZE) | append-rootfs | \
|
|
pad-rootfs | check-size
|
|
IMAGE/factory.bin := $$(IMAGE/default) | buffalo-enc $$$$(BUFFALO_PRODUCT) 1.99 | \
|
|
buffalo-tag $$$$(BUFFALO_PRODUCT) $$$$(BUFFALO_HWVER)
|
|
IMAGE/tftp.bin := $$(IMAGE/default) | buffalo-tftp-header
|
|
endef
|