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/lantiq/image/Makefile | |
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/lantiq/image/Makefile')
-rw-r--r-- | target/linux/lantiq/image/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/target/linux/lantiq/image/Makefile b/target/linux/lantiq/image/Makefile index 87a4110f7e..b169d93859 100644 --- a/target/linux/lantiq/image/Makefile +++ b/target/linux/lantiq/image/Makefile @@ -67,7 +67,7 @@ define Device/Default DEVICE_DTS = $$(SOC)_$(1) SUPPORTED_DEVICES := $(subst _,$(comma),$(1)) IMAGES := sysupgrade.bin - IMAGE/sysupgrade.bin := append-kernel | append-rootfs | pad-rootfs | append-metadata | check-size $$$$(IMAGE_SIZE) + IMAGE/sysupgrade.bin := append-kernel | append-rootfs | pad-rootfs | append-metadata | check-size endef define Device/NAND/xway @@ -92,13 +92,13 @@ endef define Device/lantiqBrnImage KERNEL := kernel-bin | append-dtb | mkbrncmdline | lzma-no-dict IMAGES := factory.bin - IMAGE/factory.bin := mkbrnimg | check-size $$$$(IMAGE_SIZE) + IMAGE/factory.bin := mkbrnimg | check-size endef define Device/lantiqFullImage KERNEL := kernel-bin | append-dtb | lzma | uImage lzma | pad-offset 4 0 IMAGES := sysupgrade.bin fullimage.bin - IMAGE/fullimage.bin := fullimage | check-size $$$$(IMAGE_SIZE) + IMAGE/fullimage.bin := fullimage | check-size endef define Device/AVM @@ -106,7 +106,7 @@ define Device/AVM KERNEL := kernel-bin | append-dtb | lzma | eva-image KERNEL_INITRAMFS := $$(KERNEL) IMAGE/sysupgrade.bin := append-kernel | pad-to 64k | append-avm-fakeroot | \ - append-rootfs | pad-rootfs | append-metadata | check-size $$$$(IMAGE_SIZE) + append-rootfs | pad-rootfs | append-metadata | check-size endef ifeq ($(SUBTARGET),ase) |