2 # Copyright (C) 2009-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 UIMAGE
:=$(BIN_DIR
)/$(IMG_PREFIX
)-uImage
11 fs_squash
:=squashfs-only
16 ifeq ($(CONFIG_TARGET_ROOTFS_INITRAMFS
),y
)
22 UIMAGE
:=$(BIN_DIR
)/$(IMG_PREFIX
)-uImage-initramfs
27 cp
$(LINUX_DIR
)/arch
/arm
/boot
/uImage
$(KDIR
)/uImage
30 define Image
/BuildKernel
31 cp
$(KDIR
)/uImage
$(UIMAGE
)
34 define Image
/Build
/jffs2-64k
35 dd if
=$(KDIR
)/root.
$(1) of
=$(BIN_DIR
)/$(IMG_PREFIX
)-$(1).img bs
=64k conv
=sync
38 define Image
/Build
/jffs2-128k
39 dd if
=$(KDIR
)/root.
$(1) of
=$(BIN_DIR
)/$(IMG_PREFIX
)-$(1).img bs
=128k conv
=sync
42 define Image
/Build
/squashfs
43 $(call prepare_generic_squashfs
,$(KDIR
)/root.squashfs
)
44 dd if
=$(KDIR
)/root.
$(1) of
=$(BIN_DIR
)/$(IMG_PREFIX
)-$(1).img bs
=128k conv
=sync
48 $(call Image
/Build
/$(1),$(1))
51 $(eval
$(call BuildImage
))