Browse Source

ramips: check the size of the uImage in image generation

SVN-Revision: 27388
Gabor Juhos 14 years ago
parent
commit
6f54df889a
1 changed files with 3 additions and 6 deletions
  1. 3 6
      target/linux/ramips/image/Makefile

+ 3 - 6
target/linux/ramips/image/Makefile

@@ -54,15 +54,12 @@ endef
 
 
 define BuildFirmware/Generic
 define BuildFirmware/Generic
 	$(call PatchKernelLzma,$(2),$(3) $($(4)))
 	$(call PatchKernelLzma,$(2),$(3) $($(4)))
-	if [ `stat -c%s "$(KDIR)/vmlinux-$(2).bin.lzma"` -gt $(5) ]; then \
-		echo "Warning: $(KDIR)/vmlinux-$(2).bin.lzma is too big"; \
+	$(call MkImage,lzma,"$(KDIR)/vmlinux-$(2).bin.lzma","$(KDIR)/vmlinux-$(2).uImage")
+	if [ `stat -c%s "$(KDIR)/vmlinux-$(2).uImage"` -gt $(5) ]; then \
+		echo "Warning: $(KDIR)/vmlinux-$(2).uImage is too big"; \
 	else if [ `stat -c%s $(KDIR)/root.$(1)` -gt $(6) ]; then \
 	else if [ `stat -c%s $(KDIR)/root.$(1)` -gt $(6) ]; then \
 		echo "Warning: $(KDIR)/root.$(1) is too big"; \
 		echo "Warning: $(KDIR)/root.$(1) is too big"; \
 	else \
 	else \
-		mkimage -A mips -O linux -T kernel -C lzma \
-			$(call kernel_entry) \
-			-n 'MIPS OpenWrt Linux-$(LINUX_VERSION)' \
-			-d $(KDIR)/vmlinux-$(2).bin.lzma $(KDIR)/vmlinux-$(2).uImage; \
 		( \
 		( \
 			dd if=$(KDIR)/vmlinux-$(2).uImage bs=$(5) conv=sync; \
 			dd if=$(KDIR)/vmlinux-$(2).uImage bs=$(5) conv=sync; \
 			dd if=$(KDIR)/root.$(1) bs=64k conv=sync; \
 			dd if=$(KDIR)/root.$(1) bs=64k conv=sync; \