mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2024-12-17 12:24:33 +00:00
ar71xx: compress kernel binaries in Image/Prepare stage
The lzma compressed kernel is used by one of the loaders. SVN-Revision: 29971
This commit is contained in:
parent
d5d37febb4
commit
8766f32b8c
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user