82f2e96d587c0c5baae5fc18368ff04e3813f769
[openwrt/staging/florian.git] / target / linux / ixp4xx / image / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 include $(TOPDIR)/rules.mk
8 include $(INCLUDE_DIR)/image.mk
9
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)/openwrt-$(BOARD)-$(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)/openwrt-$(BOARD)-$(1).img \
21 -p -o $(BIN_DIR)/openwrt-$(2)-$(1)-16mb.bin
22 endef
23 endif
24
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 rm -rf $(TARGET_DIR)/{var,jffs,rom}
30 $(INSTALL_DIR) $(TARGET_DIR)/var
31 $(TAR) cfj $(BIN_DIR)/openwrt-$(2)-$(1).img --numeric-owner --owner=0 --group=0 -C $(TARGET_DIR)/ .
32 $(STAGING_DIR_HOST)/bin/encode_crc $(BIN_DIR)/openwrt-$(2)-$(1).img $(BIN_DIR)/openwrt-$(2)-$(1)-webupgrade.img
33 endef
34
35 define Image/Prepare
36 cp $(LINUX_DIR)/arch/arm/boot/zImage $(KDIR)/zImage
37 endef
38
39 define Image/BuildKernel
40 cp $(KDIR)/zImage $(BIN_DIR)/openwrt-$(BOARD)-zImage
41 BIN_DIR=$(BIN_DIR) $(TOPDIR)/scripts/arm-magic.sh
42 endef
43
44 define Image/Build
45 $(call Image/Build/$(1),$(1))
46 endef
47
48 define Image/Build/jffs2-64k
49 dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-$(1).img bs=65536 conv=sync
50 endef
51
52 define Image/Build/jffs2-128k
53 dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-$(1).img bs=131072 conv=sync
54 $(call Image/Build/Linksys,$(1))
55 $(call Image/Build/Freecom,$(1),fsg3,$(1))
56 endef
57
58 define Image/Build/squashfs
59 $(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
60 dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-$(1).img bs=131072 conv=sync
61 $(call Image/Build/Linksys,$(1),nslu2,$(1))
62 $(call Image/Build/Freecom,$(1),fsg3,$(1))
63 endef
64
65 $(eval $(call BuildImage))