X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/6473465573d95d57f9ad05183d3cadaf08d10b58..8ccd126beda02afce9a1a4b19c851e51b0fa0ad6:/target/linux/brcm63xx/image/Makefile?ds=sidebyside diff --git a/target/linux/brcm63xx/image/Makefile b/target/linux/brcm63xx/image/Makefile index 883c6e5e2..7c4ed4644 100644 --- a/target/linux/brcm63xx/image/Makefile +++ b/target/linux/brcm63xx/image/Makefile @@ -34,7 +34,14 @@ define Image/Build/CFE -b $(2) -c $(3) -e $(LOADADDR) -l $(LOADADDR) # -b $(2) -c $(3) -e $(KERNEL_ENTRY) -l $(LOADADDR) - $(call prepare_generic_squashfs,$(BIN_DIR)/openwrt-$(2)-$(1)-cfe.bin) +endef + +define Image/Build/CFEAGPF + # Generate the tagged image + $(STAGING_DIR_HOST)/bin/imagetag -i $(KDIR)/vmlinux.lzma.cfe -f $(KDIR)/root.$(1) \ + -o $(BIN_DIR)/openwrt-$(2)-$(1)-cfe.bin \ + -b $(2) -c $(3) -e $(LOADADDR) -l $(LOADADDR) \ + -v 8 -m IMAGE -k 0x20000 -n $(4) -p alice endef define Image/Build/RedBoot @@ -45,6 +52,14 @@ define Image/Build/RedBoot dd if=$(KDIR)/vmlinux.bin.gz of=$(BIN_DIR)/openwrt-$(1)-vmlinux.gz bs=65536 conv=sync endef +define Image/Build/CFEOLD + $(TOPDIR)/scripts/brcmImage.pl -t -p \ + -b $(2) -c $(3) \ + -k $(KDIR)/vmlinux.lzma.cfe \ + -r $(KDIR)/root.$(1) \ + -o $(BIN_DIR)/openwrt-$(2)-$(1)-cfe.bin +endef + define Build/Clean $(MAKE) -C lzma-loader clean endef @@ -86,12 +101,18 @@ define Image/Build $(call Image/Build/CFE,$(1),96358VW,6358) # Comtrend 536 $(call Image/Build/CFE,$(1),96348GW-11,6348) + # Davolink DV201AMR + $(call Image/Build/CFEOLD,$(1),DV201AMR,6348) + # USR 9108 + $(call Image/Build/CFE,$(1),96348GW-A,6348) # DG834GT $(call Image/Build/CFE,$(1),96348GW-10,6348) # Sagem F@ST2404 $(call Image/Build/CFE,$(1),F@ST2404,6348) # Inventel Livebox $(call Image/Build/RedBoot,livebox) + # Pirelli Alice Gate VoIP 2 Plus Wi-Fi AGPF-S0 + $(call Image/Build/CFEAGPF,$(1),AGPF-S0,6358,0x20000) endef $(eval $(call BuildImage))