diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-05-08 20:06:44 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2010-05-08 20:06:44 +0000 |
commit | b7aa34d7960d1ddf70e4912500069091ea5c7f16 (patch) | |
tree | 135b25feac3a570f5c1ea9d6c1f9a27117042e29 /target | |
parent | 4fd86ccb7b64e6480973d4ed36ffc3484adffb2d (diff) | |
download | upstream-b7aa34d7960d1ddf70e4912500069091ea5c7f16.tar.gz upstream-b7aa34d7960d1ddf70e4912500069091ea5c7f16.tar.bz2 upstream-b7aa34d7960d1ddf70e4912500069091ea5c7f16.zip |
ar71xx: use the lzma kernel and a proper size limit for pb92
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21405 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/ar71xx/image/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/target/linux/ar71xx/image/Makefile b/target/linux/ar71xx/image/Makefile index c6721de48e..942ef12082 100644 --- a/target/linux/ar71xx/image/Makefile +++ b/target/linux/ar71xx/image/Makefile @@ -212,14 +212,16 @@ define Image/Build/AP83 endef define Image/Build/PB92 - $(call PatchKernelGzip,$(2),$(3)) - if [ `stat -c%s $(KDIR)/root.$(1)` -gt 2818048 ]; then \ + $(call PatchKernelLzma,$(2),$(3)) + if [ `stat -c%s $(KDIR)/vmlinux-$(2).bin.lzma` -gt 917504 ]; then \ + echo "Warning: $(KDIR)/vmlinux-$(2).bin.lzma is too big"; \ + elif [ `stat -c%s $(KDIR)/root.$(1)` -gt 2818048 ]; then \ echo "Warning: $(KDIR)/root.$(1) is too big"; \ else \ - mkimage -A mips -O linux -T kernel -a 0x80060000 -C gzip -e \ + mkimage -A mips -O linux -T kernel -a 0x80060000 -C lzma -e \ 0x80060000 \ -n 'MIPS OpenWrt Linux-$(LINUX_VERSION)' \ - -d $(KDIR)/vmlinux-$(2).bin.gz \ + -d $(KDIR)/vmlinux-$(2).bin.lzma \ $(KDIR)/vmlinux-$(2).uImage; \ dd if=$(KDIR)/vmlinux-$(2).uImage \ of=$(call imgname,kernel,$(2)).bin bs=64k conv=sync; \ |