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/ath79/image/generic-ubnt.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/ath79/image/generic-ubnt.mk')
-rw-r--r-- | target/linux/ath79/image/generic-ubnt.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/ath79/image/generic-ubnt.mk b/target/linux/ath79/image/generic-ubnt.mk index 95853b6c46..d2c4f73797 100644 --- a/target/linux/ath79/image/generic-ubnt.mk +++ b/target/linux/ath79/image/generic-ubnt.mk @@ -34,7 +34,7 @@ define Device/ubnt DEVICE_PACKAGES := kmod-usb2 IMAGES += factory.bin IMAGE/factory.bin := append-kernel | pad-to $$$$(BLOCKSIZE) | \ - append-rootfs | pad-rootfs | check-size $$$$(IMAGE_SIZE) | mkubntimage-split + append-rootfs | pad-rootfs | check-size | mkubntimage-split endef define Device/ubnt-bz @@ -251,7 +251,7 @@ define Device/ubnt_routerstation_common IMAGE_SIZE := 16128k IMAGES := factory.bin IMAGE/factory.bin := append-rootfs | pad-rootfs | mkubntimage | \ - check-size $$$$(IMAGE_SIZE) + check-size KERNEL := kernel-bin | append-dtb | lzma | pad-to $$(BLOCKSIZE) KERNEL_INITRAMFS := kernel-bin | append-dtb endef |