2 # Copyright (C) 2006-2010 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
7 include $(TOPDIR
)/rules.mk
8 include $(INCLUDE_DIR
)/image.mk
10 ifdef CONFIG_PACKAGE_apex
11 define Image
/Build
/Linksys
12 BIN_DIR
=$(BIN_DIR
) $(TOPDIR
)/scripts
/slugimage.pl \
13 -L
$(BIN_DIR
)/apex
/apex-
$(2)-armeb.bin \
14 -k
$(BIN_DIR
)/openwrt-
$(2)-zImage \
15 -r rootfs
:$(BIN_DIR
)/$(IMG_PREFIX
)-$(1).img \
16 -p
-o
$(BIN_DIR
)/openwrt-
$(2)-$(1).bin
17 BIN_DIR
=$(BIN_DIR
) $(TOPDIR
)/scripts
/slugimage.pl \
18 -F
-L
$(BIN_DIR
)/apex
/apex-
$(2)-16mb-armeb.bin \
19 -k
$(BIN_DIR
)/openwrt-
$(2)-zImage \
20 -r rootfs
:$(BIN_DIR
)/$(IMG_PREFIX
)-$(1).img \
21 -p
-o
$(BIN_DIR
)/openwrt-
$(2)-$(1)-16mb.bin
25 define Image
/Build
/Freecom
26 $(INSTALL_DIR
) $(TARGET_DIR
)/boot
27 # TODO: Add special CMDLINE shim for webupgrade image here
28 $(CP
) $(BIN_DIR
)/openwrt-
$(2)-zImage
$(TARGET_DIR
)/zImage
29 $(TAR
) cfj
$(BIN_DIR
)/openwrt-
$(2)-$(1).img
--numeric-owner
--owner
=0 --group
=0 -C
$(TARGET_DIR
)/ .
30 $(STAGING_DIR_HOST
)/bin
/encode_crc
$(BIN_DIR
)/openwrt-
$(2)-$(1).img
$(BIN_DIR
)/openwrt-
$(2)-$(1)-webupgrade.img
31 rm -f
$(TARGET_DIR
)/zImage
35 cp
$(LINUX_DIR
)/arch
/arm
/boot
/zImage
$(KDIR
)/zImage
38 define Image
/BuildKernel
39 cp
$(KDIR
)/zImage
$(BIN_DIR
)/$(IMG_PREFIX
)-zImage
40 BIN_DIR
=$(BIN_DIR
) IMG_PREFIX
="$(IMG_PREFIX)" $(TOPDIR
)/scripts
/arm-magic.sh
44 $(call Image
/Build
/$(1),$(1))
47 define Image
/Build
/jffs2-64k
48 dd if
=$(KDIR
)/root.
$(1) of
=$(BIN_DIR
)/$(IMG_PREFIX
)-$(1).img bs
=65536 conv
=sync
51 define Image
/Build
/jffs2-128k
52 dd if
=$(KDIR
)/root.
$(1) of
=$(BIN_DIR
)/$(IMG_PREFIX
)-$(1).img bs
=131072 conv
=sync
53 $(call Image
/Build
/Linksys
,$(1),nslu2
,$(1))
54 $(call Image
/Build
/Freecom
,$(1),fsg3
,$(1))
57 define Image
/Build
/squashfs
58 $(call prepare_generic_squashfs
,$(KDIR
)/root.squashfs
)
59 dd if
=$(KDIR
)/root.
$(1) of
=$(BIN_DIR
)/$(IMG_PREFIX
)-$(1).img bs
=131072 conv
=sync
60 $(call Image
/Build
/Linksys
,$(1),nslu2
,$(1))
61 $(call Image
/Build
/Freecom
,$(1),fsg3
,$(1))
64 $(eval
$(call BuildImage
))