kirkwood: fix initramfs images
[openwrt.git] / target / linux / kirkwood / image / Makefile
1 #
2 # Copyright (C) 2009-2013 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 NAND_BLOCKSIZE := 2048:128k
11
12 define Image/BuildKernel
13         cp $(KDIR)/uImage $(BIN_DIR)/$(IMG_PREFIX)-uImage
14 ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),)
15         $(CP) $(KDIR)/uImage-initramfs $(BIN_DIR)/$(IMG_PREFIX)-uImage-initramfs
16 endif
17 endef
18
19 define Image/Build
20         $(if $(Image/Build/$(1)), \
21                 $(call Image/Build/$(1),$(1)), \
22                 $(CP) $(KDIR)/root.$(1) $(BIN_DIR)/$(IMG_PREFIX)-$(1).img \
23         )
24 endef
25
26 define Image/Build/jffs2-nand-2048-128k
27         dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/$(IMG_PREFIX)-$(1).img \
28                 bs=2048 conv=sync
29 endef
30
31 define Image/Build/squashfs
32         $(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
33         ( \
34                 dd if=$(KDIR)/uImage bs=4096k conv=sync; \
35                 dd if=$(KDIR)/root.$(1) bs=128k conv=sync; \
36         ) > $(BIN_DIR)/$(IMG_PREFIX)-$(1).img
37 endef
38
39 $(eval $(call BuildImage))