Browse Source

ar71xx: compress kernel binaries in Image/Prepare stage

The lzma compressed kernel is used by one of the loaders.

SVN-Revision: 29971
Gabor Juhos 14 years ago
parent
commit
8766f32b8c
1 changed files with 2 additions and 2 deletions
  1. 2 2
      target/linux/ar71xx/image/Makefile

+ 2 - 2
target/linux/ar71xx/image/Makefile

@@ -122,8 +122,6 @@ endef
 define Image/BuildKernel
 	cp $(KDIR)/vmlinux.elf $(VMLINUX).elf
 	cp $(KDIR)/vmlinux $(VMLINUX).bin
-	gzip -9 -c $(KDIR)/vmlinux > $(KDIR)/vmlinux.bin.gz
-	$(call CompressLzma,$(KDIR)/vmlinux,$(KDIR)/vmlinux.bin.lzma)
 	dd if=$(KDIR)/vmlinux.bin.lzma of=$(VMLINUX).lzma bs=65536 conv=sync
 	dd if=$(KDIR)/vmlinux.bin.gz of=$(VMLINUX).gz bs=65536 conv=sync
 	$(call MkuImage,gzip,,$(KDIR)/vmlinux.bin.gz,$(UIMAGE)-gzip.bin)
@@ -1064,6 +1062,8 @@ define Image/Build/Initramfs
 endef
 
 define Image/Prepare
+	gzip -9 -c $(KDIR)/vmlinux > $(KDIR)/vmlinux.bin.gz
+	$(call CompressLzma,$(KDIR)/vmlinux,$(KDIR)/vmlinux.bin.lzma)
 	$(call Image/Build/Profile/Default,loader)
 endef