2006-06-27 00:35:46 +00: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 11:45:23 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
include $(INCLUDE_DIR)/image.mk
|
|
|
|
|
2008-05-18 17:29:39 +00: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 11:45:23 +00:00
|
|
|
RAMSIZE = 0x01000000 # 64MB
|
|
|
|
|
|
|
|
LOADER_MAKEOPTS= \
|
|
|
|
KDIR=$(KDIR) \
|
|
|
|
LOADADDR=$(LOADADDR) \
|
|
|
|
KERNEL_ENTRY=$(KERNEL_ENTRY) \
|
|
|
|
RAMSIZE=$(RAMSIZE)
|
|
|
|
|
2007-04-08 17:20:01 +00:00
|
|
|
define trxalign/jffs2-128k
|
|
|
|
-a 0x20000
|
|
|
|
endef
|
|
|
|
define trxalign/jffs2-64k
|
|
|
|
-a 0x10000
|
|
|
|
endef
|
|
|
|
define trxalign/squashfs
|
|
|
|
-a 1024
|
|
|
|
endef
|
|
|
|
|
2008-05-18 17:30:04 +00:00
|
|
|
define Image/Build/CFE
|
|
|
|
# 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)
|
|
|
|
# -b $(2) -c $(3) -e $(KERNEL_ENTRY) -l $(LOADADDR)
|
|
|
|
|
|
|
|
$(call prepare_generic_squashfs,$(BIN_DIR)/openwrt-$(2)-$(1)-cfe.bin)
|
|
|
|
endef
|
|
|
|
|
2006-06-26 11:45:23 +00:00
|
|
|
define Build/Clean
|
2007-04-08 17:20:01 +00:00
|
|
|
$(MAKE) -C lzma-loader clean
|
2006-06-26 11:45:23 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Prepare
|
2008-05-18 17:30:04 +00:00
|
|
|
# Standard LZMA kernel
|
2007-08-07 00:04:25 +00:00
|
|
|
cat $(KDIR)/vmlinux | $(STAGING_DIR_HOST)/bin/lzma e -si -so -eos -lc1 -lp2 -pb2 > $(KDIR)/vmlinux.lzma
|
2008-05-18 17:30:04 +00: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 17:20:01 +00:00
|
|
|
rm -f $(KDIR)/loader.gz
|
|
|
|
$(MAKE) -C lzma-loader \
|
|
|
|
BUILD_DIR="$(KDIR)" \
|
|
|
|
TARGET="$(KDIR)" \
|
|
|
|
clean install
|
2008-05-18 17:30:04 +00:00
|
|
|
|
2007-04-08 17:20:01 +00:00
|
|
|
echo -ne "\\x00" >> $(KDIR)/loader.gz
|
2008-04-01 21:10:47 +00:00
|
|
|
rm -f $(KDIR)/fs_mark
|
|
|
|
touch $(KDIR)/fs_mark
|
|
|
|
$(call prepare_generic_squashfs,$(KDIR)/fs_mark)
|
2008-05-18 17:30:04 +00:00
|
|
|
|
2006-06-26 11:45:23 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build
|
2007-11-10 23:08:11 +00:00
|
|
|
$(STAGING_DIR_HOST)/bin/trx -o $(BIN_DIR)/openwrt-$(BOARD)-$(1).trx -f $(KDIR)/loader.gz -f $(KDIR)/vmlinux.lzma $(call trxalign/$(1)) -f $(KDIR)/root.$(1)
|
2008-05-18 17:30:04 +00:00
|
|
|
$(call Image/Build/CFE,$(1),96345GW2,6345)
|
2008-11-20 21:22:45 +00:00
|
|
|
$(call Image/Build/CFE,$(1),96348GW,6348)
|
2008-10-20 12:55:28 +00:00
|
|
|
# Neufbox4
|
|
|
|
$(call Image/Build/CFE,$(1),96358VW,6358)
|
2008-11-15 11:30:22 +00:00
|
|
|
# Comtrend 536
|
|
|
|
$(call Image/Build/CFE,$(1),96348GW-11,6348)
|
2006-06-26 11:45:23 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildImage))
|