define UIMAGE for various rootfs targets
SVN-Revision: 27113
This commit is contained in:
parent
429745edd6
commit
d97f50b69b
1 changed files with 17 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue