1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-14 19:23:53 +02:00

don't generate too large firmware images for the TEW-6x2BRP boards, they may brick the board * reported by RoundSparrow

SVN-Revision: 13878
This commit is contained in:
Gabor Juhos 2009-01-05 20:18:09 +00:00
parent a77f3b6656
commit 4df7bb3579

View File

@ -40,16 +40,22 @@ define Image/Build/AP81
cp $(KDIR)/vmlinux $(KDIR)/vmlinux-$(2)
$(STAGING_DIR_HOST)/bin/patch-cmdline $(KDIR)/vmlinux-$(2) '$(strip $(3))'
$(STAGING_DIR_HOST)/bin/lzma e $(KDIR)/vmlinux-$(2) $(KDIR)/vmlinux-$(2).bin.lzma
mkimage -A mips -O linux -T kernel -a 0x80060000 -C lzma -e \
0x80060000 \
-n 'MIPS OpenWrt Linux-$(LINUX_VERSION)' \
-d $(KDIR)/vmlinux-$(2).bin.lzma $(KDIR)/vmlinux-$(2).uImage
( \
dd if=$(KDIR)/vmlinux-$(2).uImage bs=768k conv=sync; \
dd if=$(KDIR)/root.$(1) bs=3008k conv=sync; \
) > $(call imgname,$(1),$(2)).bin
cp $(call imgname,$(1),$(2)).bin $(call imgname,$(1),$(2)).webui
echo -n $(4) >> $(call imgname,$(1),$(2)).webui
if [ `stat -c%s "$(KDIR)/vmlinux-$(2).bin.lzma"` -gt 786432 ]; then \
echo "Warning: $(KDIR)/vmlinux-$(2).bin.lzma is too big"; \
else if [ `stat -c%s $(KDIR)/root.$(1)` -gt 3080192 ]; then \
echo "Warning: $(KDIR)/root.$(1) is too big"; \
else \
mkimage -A mips -O linux -T kernel -a 0x80060000 -C lzma -e \
0x80060000 \
-n 'MIPS OpenWrt Linux-$(LINUX_VERSION)' \
-d $(KDIR)/vmlinux-$(2).bin.lzma $(KDIR)/vmlinux-$(2).uImage; \
( \
dd if=$(KDIR)/vmlinux-$(2).uImage bs=768k conv=sync; \
dd if=$(KDIR)/root.$(1) bs=3008k conv=sync; \
) > $(call imgname,$(1),$(2)).bin; \
cp $(call imgname,$(1),$(2)).bin $(call imgname,$(1),$(2)).webui; \
echo -n $(4) >> $(call imgname,$(1),$(2)).webui; \
fi; fi
endef
define Image/Build/MyLoader