ramips: fix Airlink AR670W factory image
Move the mkwrgimg build step to the makefile. It will be required by other boards as well. Signed-off-by: Mathias Kresin <dev@kresin.me>
This commit is contained in:
parent
7cc0d8b3bd
commit
6cc0ae27b9
2 changed files with 7 additions and 8 deletions
|
@ -99,6 +99,11 @@ define Build/seama-seal
|
||||||
$(call Build/seama,-s $@.seama $(1))
|
$(call Build/seama,-s $@.seama $(1))
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Build/wrg-header
|
||||||
|
mkwrgimg -i $@ -d "/dev/mtdblock/2" -s $(1) -o $@.new
|
||||||
|
mv $@.new $@
|
||||||
|
endef
|
||||||
|
|
||||||
#
|
#
|
||||||
# The real magic happens inside these templates
|
# The real magic happens inside these templates
|
||||||
#
|
#
|
||||||
|
|
|
@ -6,13 +6,6 @@ define Build/gemtek-header
|
||||||
mkheader_gemtek $@ $@.new $(1) && mv $@.new $@
|
mkheader_gemtek $@ $@.new $(1) && mv $@.new $@
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/airlink-header
|
|
||||||
mkwrgimg -i $@ \
|
|
||||||
-d "/dev/mtdblock/2" \
|
|
||||||
-s "wrgn16a_airlink_ar670w" \
|
|
||||||
-o $@.new && mv $@.new $@
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Device/ar670w
|
define Device/ar670w
|
||||||
DTS := AR670W
|
DTS := AR670W
|
||||||
BLOCKSIZE := 64k
|
BLOCKSIZE := 64k
|
||||||
|
@ -20,7 +13,8 @@ define Device/ar670w
|
||||||
IMAGE_SIZE := $(ralink_default_fw_size_4M)
|
IMAGE_SIZE := $(ralink_default_fw_size_4M)
|
||||||
KERNEL := $(KERNEL_DTB)
|
KERNEL := $(KERNEL_DTB)
|
||||||
IMAGES += factory.bin
|
IMAGES += factory.bin
|
||||||
IMAGE/factory.bin := $$(sysupgrade_bin) | gemtek-header ar725w
|
IMAGE/factory.bin := $$(sysupgrade_bin) | check-size $$$$(IMAGE_SIZE) | \
|
||||||
|
wrg-header wrgn16a_airlink_ar670w
|
||||||
endef
|
endef
|
||||||
TARGET_DEVICES += ar670w
|
TARGET_DEVICES += ar670w
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue