2006-06-27 03:35:46 +03:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2006-06-26 14:45:23 +03:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
include $(INCLUDE_DIR)/image.mk
|
|
|
|
|
2008-05-18 20:29:39 +03:00
|
|
|
LOADADDR = 0x80010000 # RAM start + 16M
|
|
|
|
KERNEL_ENTRY = $(LOADADDR) # Newer kernels add a jmp to the kernel_entry at the start of the binary
|
2006-06-26 14:45:23 +03:00
|
|
|
RAMSIZE = 0x01000000 # 64MB
|
|
|
|
|
|
|
|
LOADER_MAKEOPTS= \
|
|
|
|
KDIR=$(KDIR) \
|
|
|
|
LOADADDR=$(LOADADDR) \
|
|
|
|
KERNEL_ENTRY=$(KERNEL_ENTRY) \
|
|
|
|
RAMSIZE=$(RAMSIZE)
|
|
|
|
|
2007-04-08 20:20:01 +03:00
|
|
|
define trxalign/jffs2-128k
|
|
|
|
-a 0x20000
|
|
|
|
endef
|
|
|
|
define trxalign/jffs2-64k
|
|
|
|
-a 0x10000
|
|
|
|
endef
|
|
|
|
define trxalign/squashfs
|
|
|
|
-a 1024
|
|
|
|
endef
|
|
|
|
|
2008-05-18 20:30:04 +03:00
|
|
|
define Image/Build/CFE
|
|
|
|
# Generate the tagged image
|
|
|
|
$(STAGING_DIR_HOST)/bin/imagetag -i $(KDIR)/vmlinux.lzma.cfe -f $(KDIR)/root.$(1) \
|
2009-06-09 11:04:52 +03:00
|
|
|
-o $(BIN_DIR)/openwrt-$(2)-$(1)-$(6)-cfe.bin \
|
|
|
|
-b $(2) -c $(3) -e $(LOADADDR) -l $(LOADADDR) \
|
2009-06-10 11:24:13 +03:00
|
|
|
-t $(4) -d "$(5)" $(7)
|
2008-05-18 20:30:04 +03:00
|
|
|
# -b $(2) -c $(3) -e $(KERNEL_ENTRY) -l $(LOADADDR)
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2009-03-12 10:54:04 +02:00
|
|
|
define Image/Build/CFEAGPF
|
|
|
|
# Generate the tagged image
|
|
|
|
$(STAGING_DIR_HOST)/bin/imagetag -i $(KDIR)/vmlinux.lzma.cfe -f $(KDIR)/root.$(1) \
|
2009-06-09 11:04:52 +03:00
|
|
|
-o $(BIN_DIR)/openwrt-$(2)-$(1)-$(7)-cfe.bin \
|
2009-03-12 10:54:04 +02:00
|
|
|
-b $(2) -c $(3) -e $(LOADADDR) -l $(LOADADDR) \
|
2009-06-09 11:04:52 +03:00
|
|
|
-v 8 -m IMAGE -k 0x20000 -n $(4) -t $(5)
|
2009-03-12 10:54:04 +02:00
|
|
|
endef
|
|
|
|
|
2010-02-28 13:09:39 +02:00
|
|
|
define Image/Build/RG100A
|
|
|
|
# Generate the tagged image
|
|
|
|
$(STAGING_DIR_HOST)/bin/imagetag -i $(KDIR)/vmlinux.lzma.cfe -f $(KDIR)/root.$(1) \
|
|
|
|
-o $(BIN_DIR)/openwrt-$(6)-$(1)-$(7)-cfe.bin \
|
|
|
|
-b $(2) -c $(3) -e $(LOADADDR) -l $(LOADADDR) \
|
|
|
|
-k 0x20000 -n $(4) -t $(5)
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
2008-12-12 17:16:57 +02:00
|
|
|
define Image/Build/RedBoot
|
|
|
|
cp $(KDIR)/vmlinux.elf $(BIN_DIR)/openwrt-$(1)-vmlinux.elf
|
|
|
|
gzip -9 -c $(KDIR)/vmlinux > $(KDIR)/vmlinux.bin.gz
|
|
|
|
$(STAGING_DIR_HOST)/bin/lzma e $(KDIR)/vmlinux $(KDIR)/vmlinux.bin.l7
|
|
|
|
dd if=$(KDIR)/vmlinux.bin.l7 of=$(BIN_DIR)/openwrt-$(1)-vmlinux.lzma bs=65536 conv=sync
|
|
|
|
dd if=$(KDIR)/vmlinux.bin.gz of=$(BIN_DIR)/openwrt-$(1)-vmlinux.gz bs=65536 conv=sync
|
|
|
|
endef
|
|
|
|
|
2009-01-29 16:56:45 +02:00
|
|
|
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
|
|
|
|
|
2006-06-26 14:45:23 +03:00
|
|
|
define Build/Clean
|
2007-04-08 20:20:01 +03:00
|
|
|
$(MAKE) -C lzma-loader clean
|
2006-06-26 14:45:23 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Prepare
|
2008-05-18 20:30:04 +03:00
|
|
|
# Standard LZMA kernel
|
2007-08-07 03:04:25 +03:00
|
|
|
cat $(KDIR)/vmlinux | $(STAGING_DIR_HOST)/bin/lzma e -si -so -eos -lc1 -lp2 -pb2 > $(KDIR)/vmlinux.lzma
|
2008-05-18 20:30:04 +03:00
|
|
|
|
|
|
|
# CFE is a LZMA nazi! It took me hours to find out the parameters!
|
|
|
|
# Also I think lzma has a bug cause it generates different output depending on
|
|
|
|
# if you use stdin / stdout or not. Use files instead of stdio here, cause
|
|
|
|
# otherwise CFE will complain and not boot the image.
|
|
|
|
$(STAGING_DIR_HOST)/bin/lzma e -d22 -fb64 -a1 $(KDIR)/vmlinux $(KDIR)/vmlinux.lzma.tmp
|
|
|
|
|
|
|
|
# Strip out the length, CFE doesn't like this
|
|
|
|
dd if=$(KDIR)/vmlinux.lzma.tmp of=$(KDIR)/vmlinux.lzma.cfe bs=5 count=1
|
|
|
|
dd if=$(KDIR)/vmlinux.lzma.tmp of=$(KDIR)/vmlinux.lzma.cfe ibs=13 obs=5 skip=1 seek=1 conv=notrunc
|
|
|
|
rm -f $(KDIR)/vmlinux.lzma.tmp
|
|
|
|
|
|
|
|
# Build the LZMA loader
|
2007-04-08 20:20:01 +03:00
|
|
|
rm -f $(KDIR)/loader.gz
|
|
|
|
$(MAKE) -C lzma-loader \
|
|
|
|
BUILD_DIR="$(KDIR)" \
|
|
|
|
TARGET="$(KDIR)" \
|
|
|
|
clean install
|
2008-05-18 20:30:04 +03:00
|
|
|
|
2007-04-08 20:20:01 +03:00
|
|
|
echo -ne "\\x00" >> $(KDIR)/loader.gz
|
2008-04-02 00:10:47 +03:00
|
|
|
rm -f $(KDIR)/fs_mark
|
|
|
|
touch $(KDIR)/fs_mark
|
|
|
|
$(call prepare_generic_squashfs,$(KDIR)/fs_mark)
|
2006-06-26 14:45:23 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build
|
2008-12-12 17:16:57 +02:00
|
|
|
dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-root.$(1) bs=128k conv=sync
|
2009-06-09 11:04:52 +03:00
|
|
|
# Various routers
|
2009-06-10 11:24:13 +03:00
|
|
|
$(call Image/Build/CFE,$(1),96345GW2,6345,bccfe,,bccfe,)
|
|
|
|
$(call Image/Build/CFE,$(1),96345GW2,6345,bc221,,bc221,-y 5)
|
|
|
|
$(call Image/Build/CFE,$(1),96345GW2,6345,bc300,,bc300,)
|
2009-06-10 16:43:48 +03:00
|
|
|
$(call Image/Build/CFE,$(1),96345GW2,6345,bc310,OpenWRT-$(REVISION),bc310,)
|
2009-06-18 18:00:32 +03:00
|
|
|
$(call Image/Build/CFE,$(1),96348GW,6348,bccfe,,bccfe,)
|
2009-06-10 11:24:13 +03:00
|
|
|
$(call Image/Build/CFE,$(1),96348GW,6348,bc221,,bc221,-y 5)
|
|
|
|
# BT Voyager V210_BTR
|
|
|
|
$(call Image/Build/CFE,$(1),V210_BB,6348,bc221,,btvgr,-y 5)
|
|
|
|
# BT Voyager V210_ROI, V210_WB
|
|
|
|
$(call Image/Build/CFE,$(1),V210,6348,bc221,,btvgr,-y 5)
|
|
|
|
# BT Voyager V2091_BTR
|
|
|
|
$(call Image/Build/CFE,$(1),V2091_BB,6348,bc221,,btvgr,-y 5)
|
|
|
|
# BT Voyager V2091_ROI, V2091_WB
|
|
|
|
$(call Image/Build/CFE,$(1),V2091,6348,bc221,,btvgr,-y 5)
|
|
|
|
# BT Voyager V220V, V220V_MGCP_BTR
|
|
|
|
$(call Image/Build/CFE,$(1),RTA1052V,6348,bc221,,btvgr,-y 5)
|
|
|
|
# BT Voyager V2110, V2110_AA, V2110_ROI
|
|
|
|
$(call Image/Build/CFE,$(1),V2110,6348,bc221,,btvgr,-y 5)
|
|
|
|
# BT Voyager V2500V, V2500V_SIP_CLUB, V2500V_AA
|
|
|
|
$(call Image/Build/CFE,$(1),V2500V_BB,6348,bc221,,btvgr,-y 5)
|
2009-07-31 13:47:00 +03:00
|
|
|
# RTA1025W_16 (numerous routers)
|
|
|
|
$(call Image/Build/CFE,$(1),RTA1025W_16,6348,bc221,,btrta,-y 5)
|
2009-06-09 11:04:52 +03:00
|
|
|
# Tecom GW6000
|
2009-06-10 11:24:13 +03:00
|
|
|
$(call Image/Build/CFE,$(1),96348GW,6348,bc300,,bc300,)
|
2009-06-09 11:04:52 +03:00
|
|
|
# Tecom GW6200
|
|
|
|
$(call Image/Build/CFE,$(1),96348GW,6348,bc310,$(shell printf '\x99'),gw6200)
|
2008-10-20 15:55:28 +03:00
|
|
|
# Neufbox4
|
2009-06-09 11:04:52 +03:00
|
|
|
$(call Image/Build/CFE,$(1),96358VW,6358,bccfe,,bccfe)
|
2009-06-10 16:43:48 +03:00
|
|
|
$(call Image/Build/CFE,$(1),96358VW,6358,bc310,OpenWRT-$(REVISION),nb4)
|
2009-06-09 11:04:52 +03:00
|
|
|
# Comtrend 536, 5621
|
|
|
|
$(call Image/Build/CFE,$(1),96348GW-11,6348,bccfe,,bccfe)
|
|
|
|
$(call Image/Build/CFE,$(1),96348GW-11,6348,bc300,,bc300)
|
2009-06-10 11:24:13 +03:00
|
|
|
# TP-Link 8900GB
|
|
|
|
$(call Image/Build/CFE,$(1),96348GW-11,6348,bc310,$(shell printf 'PRID\x89\x10\x00\x02'),td8900GB)
|
2009-01-29 16:56:45 +02:00
|
|
|
# Davolink DV201AMR
|
|
|
|
$(call Image/Build/CFEOLD,$(1),DV201AMR,6348)
|
2009-01-31 18:01:20 +02:00
|
|
|
# USR 9108
|
2009-06-09 11:04:52 +03:00
|
|
|
$(call Image/Build/CFE,$(1),96348GW-A,6348,bccfe,,bccfe)
|
|
|
|
$(call Image/Build/CFE,$(1),96348GW-A,6348,bc300,,bc300)
|
2009-06-10 11:24:13 +03:00
|
|
|
# NetGear DG834GT, DG834PN
|
2009-06-09 11:04:52 +03:00
|
|
|
$(call Image/Build/CFE,$(1),96348GW-10,6348,bccfe,,bccfe)
|
|
|
|
$(call Image/Build/CFE,$(1),96348GW-10,6348,bc300,,bc300)
|
2009-06-10 11:24:13 +03:00
|
|
|
# Belkin f5d7633
|
|
|
|
$(call Image/Build/CFE,$(1),96348GW-10,6348,bc310,,bc310)
|
|
|
|
# D-Link DSL-2640B
|
|
|
|
$(call Image/Build/CFE,$(1),D-4P-W,6348,bc310,,bc310)
|
|
|
|
|
|
|
|
# TP-Link TD-8810A, TD-8810B, TD-8811A, TD-8811B
|
2009-06-17 16:16:59 +03:00
|
|
|
$(call Image/Build/CFE,$(1),8L-2M-8M,6338,bccfe,,bccfe)
|
2009-06-10 11:24:13 +03:00
|
|
|
$(call Image/Build/CFE,$(1),8L-2M-8M,6338,bc300,,bc300)
|
2009-06-09 11:04:52 +03:00
|
|
|
|
2009-06-17 16:16:59 +03:00
|
|
|
# Generic 6338 images
|
|
|
|
$(call Image/Build/CFE,$(1),6338GW,6338,bccfe,,bccfe)
|
|
|
|
$(call Image/Build/CFE,$(1),6338GW,6338,bc221,,bc221)
|
|
|
|
$(call Image/Build/CFE,$(1),6338GW,6338,bc300,,bc300)
|
|
|
|
$(call Image/Build/CFE,$(1),6338GW,6338,bc310,,bc310)
|
2009-06-26 13:27:37 +03:00
|
|
|
$(call Image/Build/CFE,$(1),6338W,6338,bccfe,,bccfe)
|
|
|
|
$(call Image/Build/CFE,$(1),6338W,6338,bc221,,bc221)
|
|
|
|
$(call Image/Build/CFE,$(1),6338W,6338,bc300,,bc300)
|
|
|
|
$(call Image/Build/CFE,$(1),6338W,6338,bc310,,bc310)
|
2009-06-17 16:16:59 +03:00
|
|
|
|
2008-12-10 18:13:41 +02:00
|
|
|
# Sagem F@ST2404
|
2009-06-09 11:04:52 +03:00
|
|
|
$(call Image/Build/CFE,$(1),F@ST2404,6348,bccfe,,bccfe)
|
|
|
|
$(call Image/Build/CFE,$(1),F@ST2404,6348,bc300,,bc300)
|
2009-06-10 16:43:48 +03:00
|
|
|
$(call Image/Build/CFE,$(1),F@ST2404,6348,bc310,OpenWRT-$(REVISION),bc310)
|
2008-12-12 17:16:57 +02:00
|
|
|
# Inventel Livebox
|
|
|
|
$(call Image/Build/RedBoot,livebox)
|
2009-06-10 11:24:13 +03:00
|
|
|
# D-Link DSL-2740B
|
|
|
|
$(call Image/Build/CFE,$(1),96358GW,6358,bc310,,dsl2740b)
|
2009-03-12 10:54:04 +02:00
|
|
|
# Pirelli Alice Gate VoIP 2 Plus Wi-Fi AGPF-S0
|
2009-06-09 11:04:52 +03:00
|
|
|
$(call Image/Build/CFEAGPF,$(1),AGPF-S0,6358,0x20000,bccfe,,bccfe)
|
|
|
|
$(call Image/Build/CFEAGPF,$(1),AGPF-S0,6358,0x20000,ag306,,agv2+w)
|
2009-08-09 13:19:47 +03:00
|
|
|
# Pirelli A226G
|
|
|
|
$(call Image/Build/CFEAGPF,$(1),DWV-S0,6358,0x10000,bccfe,,bccfe)
|
|
|
|
$(call Image/Build/CFEAGPF,$(1),DWV-S0,6358,0x10000,ag306,DWV_96358,a226g)
|
2010-02-28 13:09:39 +02:00
|
|
|
|
|
|
|
# RG100A,DB120 etc.
|
|
|
|
$(call Image/Build/RG100A,$(1),96358VW2,6358,0x20000,bc310,rg100a,bc310)
|
|
|
|
|
2006-06-26 14:45:23 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildImage))
|