b8723363dac2b1eb245885ad64c82d68521b3fd7
[openwrt.git] / target / linux / pxa / image / Makefile
1 #
2 # Copyright (C) 2008-2012 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 define Image/BuildKernel
11         cp $(KDIR)/uImage $(BIN_DIR)/$(IMG_PREFIX)-uImage
12 endef
13
14 # Build a fake flash image for usage in Qemu
15 define Image/Build/Gumstix
16         dd if=/dev/zero bs=128k count=256 of=$(BIN_DIR)/$(IMG_PREFIX)-$(1)-qemu-flash.img
17         dd if=$(BIN_DIR)/openwrt-pxa-gumstix-u-boot.bin conv=notrunc bs=128k \
18                 of=$(BIN_DIR)/$(IMG_PREFIX)-$(1)-qemu-flash.img
19         dd if=$(KDIR)/root.$(1) conv=notrunc bs=128k seek=2 \
20                 of=$(BIN_DIR)/$(IMG_PREFIX)-$(1)-qemu-flash.img
21         dd if=$(KDIR)/uImage conv=notrunc bs=128k seek=248 \
22                 of=$(BIN_DIR)/$(IMG_PREFIX)-$(1)-qemu-flash.img
23 endef
24
25 define Image/Build
26         $(call Image/Build/$(1),$(1))
27         $(call Image/Build/$(PROFILE),$(1))
28 endef
29
30 define Image/Build/jffs2-64k
31         dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/$(IMG_PREFIX)-$(1).img bs=64k conv=sync
32 endef
33
34 define Image/Build/jffs2-128k
35         dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/$(IMG_PREFIX)-$(1).img bs=128k conv=sync
36 endef
37
38 define Image/Build/squashfs
39         $(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
40         dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/$(IMG_PREFIX)-$(1).img bs=128k conv=sync
41 endef
42
43 $(eval $(call BuildImage))