diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-02-23 19:58:02 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-02-23 19:58:02 +0000 |
commit | 9017fce3a21751606f6950e6caa5141d769951fa (patch) | |
tree | 4593ee6bfc9ca61642e9ade83320f515de04fb66 /target/linux/ramips/image/Makefile | |
parent | c9d8f471fcda9856c1b99b1b19e6be94f6fc4b1e (diff) | |
download | mtk-20170518-9017fce3a21751606f6950e6caa5141d769951fa.zip mtk-20170518-9017fce3a21751606f6950e6caa5141d769951fa.tar.gz mtk-20170518-9017fce3a21751606f6950e6caa5141d769951fa.tar.bz2 |
ramips: image: add MkImageLzma wrapper
SVN-Revision: 30696
Diffstat (limited to 'target/linux/ramips/image/Makefile')
-rw-r--r-- | target/linux/ramips/image/Makefile | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/target/linux/ramips/image/Makefile b/target/linux/ramips/image/Makefile index 29d1f25..c549562 100644 --- a/target/linux/ramips/image/Makefile +++ b/target/linux/ramips/image/Makefile @@ -46,6 +46,11 @@ define MkImage -d $(2) $(3) endef +define MkImageLzma + $(call PatchKernelLzma,$(1),$(2)) + $(call MkImage,lzma,$(KDIR)/vmlinux-$(1).bin.lzma,$(KDIR)/vmlinux-$(1).uImage) +endef + define Image/BuildKernel cp $(KDIR)/vmlinux.elf $(BIN_DIR)/$(VMLINUX).elf cp $(KDIR)/vmlinux $(BIN_DIR)/$(VMLINUX).bin @@ -56,8 +61,7 @@ define Image/BuildKernel endef define BuildFirmware/Generic - $(call PatchKernelLzma,$(2),$(3) $($(4))) - $(call MkImage,lzma,"$(KDIR)/vmlinux-$(2).bin.lzma","$(KDIR)/vmlinux-$(2).uImage") + $(call MkImageLzma,$(2),$(3) $($(4))) 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 \ @@ -71,14 +75,12 @@ define BuildFirmware/Generic endef define BuildFirmware/Generic/initramfs - $(call PatchKernelLzma,$(2),$(3) $($(4))) - $(call MkImage,lzma,"$(KDIR)/vmlinux-$(2).bin.lzma","$(KDIR)/vmlinux-$(2).uImage") + $(call MkImageLzma,$(2),$(3) $($(4))) $(CP) $(KDIR)/vmlinux-$(2).uImage $(call imgname,$(1),$(2))-uImage.bin endef define BuildFirmware/WL341V3 - $(call PatchKernelLzma,$(2),$(3) $($(4))) - $(call MkImage,lzma,"$(KDIR)/vmlinux-$(2).bin.lzma","$(KDIR)/vmlinux-$(2).uImage") + $(call MkImageLzma,$(2),$(3) $($(4))) 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 \ @@ -99,8 +101,7 @@ define BuildFirmware/WL341V3 endef define BuildFirmware/Buffalo - $(call PatchKernelLzma,$(2),board=$(3) $($(4))) - $(call MkImage,lzma,"$(KDIR)/vmlinux-$(2).bin.lzma","$(KDIR)/vmlinux-$(2).uImage") + $(call MkImageLzma,$(2),board=$(3) $($(4))) 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 \ |