build images for the AP83 board
SVN-Revision: 16357
This commit is contained in:
parent
ab19bea631
commit
bb698428f0
1 changed files with 38 additions and 0 deletions
|
@ -78,6 +78,31 @@ define Image/Build/AP81
|
||||||
fi; fi
|
fi; fi
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Image/Build/AP83
|
||||||
|
cp $(KDIR)/vmlinux $(KDIR)/vmlinux-$(2)
|
||||||
|
$(STAGING_DIR_HOST)/bin/patch-cmdline $(KDIR)/vmlinux-$(2) '$(strip $(3))'
|
||||||
|
gzip -9 -c $(KDIR)/vmlinux-$(2) > $(KDIR)/vmlinux-$(2).bin.gz
|
||||||
|
if [ `stat -c%s "$(KDIR)/vmlinux-$(2).bin.gz"` -gt 1310720 ]; then \
|
||||||
|
echo "Warning: $(KDIR)/vmlinux-$(2).bin.gz is too big"; \
|
||||||
|
else if [ `stat -c%s $(KDIR)/root.$(1)` -gt 6619136 ]; then \
|
||||||
|
echo "Warning: $(KDIR)/root.$(1) is too big"; \
|
||||||
|
else \
|
||||||
|
mkimage -A mips -O linux -T kernel -a 0x80060000 -C gzip -e \
|
||||||
|
0x80060000 \
|
||||||
|
-n 'MIPS OpenWrt Linux-$(LINUX_VERSION)' \
|
||||||
|
-d $(KDIR)/vmlinux-$(2).bin.gz \
|
||||||
|
$(KDIR)/vmlinux-$(2).uImage; \
|
||||||
|
dd if=$(KDIR)/vmlinux-$(2).uImage \
|
||||||
|
of=$(call imgname,kernel,$(2)).bin bs=64k conv=sync; \
|
||||||
|
dd if=$(KDIR)/root.$(1) \
|
||||||
|
of=$(call imgname,$(1),$(2)-rootfs).bin bs=128k conv=sync; \
|
||||||
|
( \
|
||||||
|
dd if=$(KDIR)/vmlinux-$(2).uImage bs=1280k conv=sync; \
|
||||||
|
dd if=$(KDIR)/root.$(1); \
|
||||||
|
) > $(call imgname,$(1),$(2)-firmware).bin; \
|
||||||
|
fi; fi
|
||||||
|
endef
|
||||||
|
|
||||||
define Image/Build/MyLoader
|
define Image/Build/MyLoader
|
||||||
-$(STAGING_DIR_HOST)/bin/mkmylofw -B $(2) \
|
-$(STAGING_DIR_HOST)/bin/mkmylofw -B $(2) \
|
||||||
-p0x30000:0xc0000:ahl:0x80060000:kernel:$(KDIR)/vmlinux.bin.lzma \
|
-p0x30000:0xc0000:ahl:0x80060000:kernel:$(KDIR)/vmlinux.bin.lzma \
|
||||||
|
@ -157,6 +182,14 @@ define Image/Build/Template/AP81/squashfs
|
||||||
$(call Image/Build/Template/AP81,squashfs,$(1),$(2),$(3))
|
$(call Image/Build/Template/AP81,squashfs,$(1),$(2),$(3))
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Image/Build/Template/AP83
|
||||||
|
$(call Image/Build/AP83,$(1),$(2),$(3))
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Image/Build/Template/AP83/squashfs
|
||||||
|
$(call Image/Build/Template/AP83,squashfs,$(1),$(2))
|
||||||
|
endef
|
||||||
|
|
||||||
define Image/Build/Template/TPLINK
|
define Image/Build/Template/TPLINK
|
||||||
$(call Image/Build/TPLINK,$(1),$(2),$(3),$(4))
|
$(call Image/Build/TPLINK,$(1),$(2),$(3),$(4))
|
||||||
endef
|
endef
|
||||||
|
@ -181,6 +214,10 @@ define Image/Build/Template/Planex/squashfs
|
||||||
$(call Image/Build/Template/Planex,squashfs,$(1),$(2))
|
$(call Image/Build/Template/Planex,squashfs,$(1),$(2))
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Image/Build/Profile/AP83
|
||||||
|
$(call Image/Build/Template/AP83/$(1),ap83,board=AP83)
|
||||||
|
endef
|
||||||
|
|
||||||
define Image/Build/Profile/WP543
|
define Image/Build/Profile/WP543
|
||||||
$(call Image/Build/Template/Compex/$(1),wp543)
|
$(call Image/Build/Template/Compex/$(1),wp543)
|
||||||
endef
|
endef
|
||||||
|
@ -240,6 +277,7 @@ define Image/Build/Profile/WRT400N
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Image/Build/Profile/Default
|
define Image/Build/Profile/Default
|
||||||
|
$(call Image/Build/Profile/AP83,$(1))
|
||||||
$(call Image/Build/Profile/A02RBW300N,$(1))
|
$(call Image/Build/Profile/A02RBW300N,$(1))
|
||||||
$(call Image/Build/Profile/DIR615C1,$(1))
|
$(call Image/Build/Profile/DIR615C1,$(1))
|
||||||
$(call Image/Build/Profile/MZKW04NU,$(1))
|
$(call Image/Build/Profile/MZKW04NU,$(1))
|
||||||
|
|
Loading…
Reference in a new issue