diff options
author | Sungbo Eo <mans0n@gorani.run> | 2020-03-10 22:58:27 +0900 |
---|---|---|
committer | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2020-03-21 20:02:55 +0100 |
commit | 3f14f034fb5e191f4a537998379d8e922ec31e8a (patch) | |
tree | 2daa222bf570dcd278377f8fe4c8969a92d4ead0 /target/linux/ramips/image/rt288x.mk | |
parent | 1444e31a7bf54b796f8ef88e77fee255b959c6bb (diff) | |
download | upstream-3f14f034fb5e191f4a537998379d8e922ec31e8a.tar.gz upstream-3f14f034fb5e191f4a537998379d8e922ec31e8a.tar.bz2 upstream-3f14f034fb5e191f4a537998379d8e922ec31e8a.zip |
treewide: omit IMAGE_SIZE argument from check-size
Now that check-size uses IMAGE_SIZE by default, we can skip the argument from
image recipes to reduce redundancy.
Signed-off-by: Sungbo Eo <mans0n@gorani.run>
[do not touch ar71xx]
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Diffstat (limited to 'target/linux/ramips/image/rt288x.mk')
-rw-r--r-- | target/linux/ramips/image/rt288x.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/ramips/image/rt288x.mk b/target/linux/ramips/image/rt288x.mk index 800dc553a2..720ff65741 100644 --- a/target/linux/ramips/image/rt288x.mk +++ b/target/linux/ramips/image/rt288x.mk @@ -18,7 +18,7 @@ define Device/airlink101_ar670w IMAGE_SIZE := 3840k KERNEL := $(KERNEL_DTB) | pad-to $$(BLOCKSIZE) IMAGES += factory.bin - IMAGE/factory.bin := $$(sysupgrade_bin) | check-size $$$$(IMAGE_SIZE) | \ + IMAGE/factory.bin := $$(sysupgrade_bin) | check-size | \ wrg-header wrgn16a_airlink_ar670w SUPPORTED_DEVICES += ar670w endef @@ -87,7 +87,7 @@ define Device/dlink_dap-1522-a1 IMAGES += factory.bin IMAGE/factory.bin := append-kernel | pad-offset $$$$(BLOCKSIZE) 96 | \ append-rootfs | pad-rootfs -x 96 | wrg-header wapnd01_dlink_dap1522 | \ - check-size $$$$(IMAGE_SIZE) + check-size endef TARGET_DEVICES += dlink_dap-1522-a1 |