[source] image: use check-size from new image build code
LEDE Commits
lede-commits at lists.infradead.org
Tue Sep 13 12:10:55 PDT 2016
mkresin pushed a commit to source.git, branch master:
https://git.lede-project.org/14b40d61e13ce0408d5ed9dff2ad3a18ab0c2471
commit 14b40d61e13ce0408d5ed9dff2ad3a18ab0c2471
Author: Mathias Kresin <dev at kresin.me>
AuthorDate: Tue Sep 13 07:18:10 2016 +0200
image: use check-size from new image build code
Use the new image build code and deduplicate the code.
Signed-off-by: Mathias Kresin <dev at kresin.me>
---
include/image.mk | 9 +--------
1 file changed, 1 insertion(+), 8 deletions(-)
diff --git a/include/image.mk b/include/image.mk
index 324582a..261f0f8 100644
--- a/include/image.mk
+++ b/include/image.mk
@@ -422,13 +422,6 @@ define Device/Build/initramfs
endef
endif
-define Device/Build/check_size
- @[ $$(($(subst k,* 1024,$(subst m, * 1024k,$(1))))) -ge "$$(stat -c%s $@)" ] || { \
- echo "WARNING: Image file $@ is too big" >&2; \
- rm -f $@; \
- }
-endef
-
define Device/Build/compile
$$(_COMPILE_TARGET): $(KDIR)/$(1)
$(eval $(call Device/Export,$(KDIR)/$(1)))
@@ -450,7 +443,7 @@ define Device/Build/kernel
$$(KDIR_KERNEL_IMAGE): $(KDIR)/$$(KERNEL_NAME) $(CURDIR)/Makefile $$(KERNEL_DEPENDS)
@rm -f $$@
$$(call concat_cmd,$$(KERNEL))
- $$(if $$(KERNEL_SIZE),$$(call Device/Build/check_size,$$(KERNEL_SIZE)))
+ $$(if $$(KERNEL_SIZE),$$(call Build/check-size,$$(KERNEL_SIZE)))
endif
endef
More information about the lede-commits
mailing list