summaryrefslogtreecommitdiffstats
path: root/target/linux/ep93xx
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-06-04 18:27:09 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2011-06-04 18:27:09 +0000
commit29ba1eadaa3c24855e761ee27ae6dc284bac84e8 (patch)
tree613ee619d65d0cb2d9f465689e4371042482fa9a /target/linux/ep93xx
parent44bc5805539ba37d8096f212e25c9c6471de3ee6 (diff)
[ep93xx] define UIMAGE for various rootfs targets
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27113 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ep93xx')
-rw-r--r--target/linux/ep93xx/image/Makefile18
1 files changed, 17 insertions, 1 deletions
diff --git a/target/linux/ep93xx/image/Makefile b/target/linux/ep93xx/image/Makefile
index 660022a14..f4064e1bb 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