diff options
author | Florian Fainelli <florian@openwrt.org> | 2011-06-04 18:27:09 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2011-06-04 18:27:09 +0000 |
commit | d97f50b69bc22fff76e6ab5aa891e241e982a078 (patch) | |
tree | f13086eb4b6bdc66a3bc38c82819999348fe7043 /target | |
parent | 429745edd60812183596a87ab0be73911d0d4299 (diff) | |
download | upstream-d97f50b69bc22fff76e6ab5aa891e241e982a078.tar.gz upstream-d97f50b69bc22fff76e6ab5aa891e241e982a078.tar.bz2 upstream-d97f50b69bc22fff76e6ab5aa891e241e982a078.zip |
define UIMAGE for various rootfs targets
SVN-Revision: 27113
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/ep93xx/image/Makefile | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/target/linux/ep93xx/image/Makefile b/target/linux/ep93xx/image/Makefile index 660022a142..f4064e1bbe 100644 --- a/target/linux/ep93xx/image/Makefile +++ b/target/linux/ep93xx/image/Makefile @@ -7,11 +7,28 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/image.mk +UIMAGE:=$(BIN_DIR)/$(IMG_PREFIX)-uImage +fs_squash:=squashfs-only +fs_all:=all +fs_4k:=4k +fs_64k:=64k +fs_128k:=128k +ifeq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),y) + fs_squash:=initramfs + fs_all:=initramfs + fs_4k:=initramfs + fs_64k:=initramfs + fs_128k:=initramfs + UIMAGE:=$(BIN_DIR)/$(IMG_PREFIX)-uImage-initramfs +endif + + define Image/Prepare cp $(LINUX_DIR)/arch/arm/boot/uImage $(KDIR)/uImage endef define Image/BuildKernel + cp $(KDIR)/uImage $(UIMAGE) endef define Image/Build/jffs2-64k @@ -28,7 +45,6 @@ define Image/Build/squashfs endef define Image/Build - cp $(KDIR)/uImage $(BIN_DIR)/$(IMG_PREFIX)-uImage $(call Image/Build/$(1),$(1)) endef |