ixp4xx: Add HSS audio driver for Avila product family
[openwrt/openwrt.git] / target / linux / ixp4xx / image / Makefile
1 #
2 # Copyright (C) 2006-2010 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)/$(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
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 $(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
32 endef
33
34 define Image/Prepare
35 cp $(LINUX_DIR)/arch/arm/boot/zImage $(KDIR)/zImage
36 endef
37
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
41 endef
42
43 define Image/Build
44 $(call Image/Build/$(1),$(1))
45 endef
46
47 define Image/Build/jffs2-64k
48 dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/$(IMG_PREFIX)-$(1).img bs=65536 conv=sync
49 endef
50
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))
55 endef
56
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))
62 endef
63
64 $(eval $(call BuildImage))