1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
#
# Copyright (C) 2006 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/image.mk
LOADER_MAKE = $(MAKE) -C lzma-loader KDIR=$(KDIR)
define CompileLoader
$(LOADER_MAKE) LOADER=$(1) LOADER_DATA="" \
LZMA_TEXT_START=$(2) LZMA_STARTUP_ORG=$(3) \
compile
endef
define CompileLZMAKernel
$(LOADER_MAKE) LOADER=vmlinux-lzma-$(1) LOADER_DATA=$(KDIR)/vmlinux.lzma \
LZMA_TEXT_START=$(2) LZMA_STARTUP_ORG=$(3) \
compile
endef
define Build/Clean
$(LOADER_MAKE) clean
endef
define Image/Prepare
cat $(KDIR)/vmlinux | $(STAGING_DIR)/bin/lzma e -si -so -eos -lc1 -lp2 -pb2 > $(KDIR)/vmlinux.lzma
ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),y)
$(call CompileLoader,zyxel,0x80500000,0)
else
$(call CompileLZMAKernel,zyxel,0x80500000,0)
endif
endef
define trxalign/jffs2-128k
-a 0x20000
endef
define trxalign/jffs2-64k
-a 0x10000
endef
define trxalign/squashfs
-a 1024
endef
define Image/Build/ZyXEL
$(CP) $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1)-noloader.trx $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(3)-$(2).trx
endef
define Image/Build
$(STAGING_DIR)/bin/trx -o $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1)-noloader.trx -f $(KDIR)/vmlinux.lzma $(call trxalign/$(1)) -f $(KDIR)/root.$(1)
ifneq ($(1),jffs2-128K)
#FIXME: firware images yet
endif
endef
define Image/Build/LZMAKernel
$(CP) $(KDIR)/loader-vmlinux-lzma-$(2).$(3) \
$(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-vmlinux-lzma-$(1).$(3)
endef
define Image/Build/Initramfs
$(call Image/Build/LZMAKernel,p-334wt,zyxel,bin)
$(call Image/Build/LZMAKernel,p-335wt,zyxel,bin)
endef
$(eval $(call BuildImage))
|