[OpenWrt-Devel] [PATCH] mxs: Include the right kernel image in the rootfs

2015-04-05 Thread Harald Geyer
Currently we always include the zImage if any image is selected for
inclusion in the root filesystem. This patch adds discrimination
between zImage and uImage.

Signed-off-by: Harald Geyer har...@ccbib.org
---
 target/linux/mxs/image/Makefile |7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/target/linux/mxs/image/Makefile b/target/linux/mxs/image/Makefile
index 55e88c2..9830a7d 100644
--- a/target/linux/mxs/image/Makefile
+++ b/target/linux/mxs/image/Makefile
@@ -22,10 +22,15 @@ endef
 
 define Image/InstallKernel
 
-  ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_KERNEL),)
+  ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_ZIMAGE),)
mkdir -p $(TARGET_DIR)/boot
$(CP) $(LINUX_DIR)/arch/arm/boot/zImage $(TARGET_DIR)/boot/
   endif
+
+  ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_UIMAGE),)
+   mkdir -p $(TARGET_DIR)/boot
+   cp $(KDIR)/uImage $(TARGET_DIR)/boot/
+  endif
   
   ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_DTB),)
mkdir -p $(TARGET_DIR)/boot
-- 
1.7.10.4
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel


Re: [OpenWrt-Devel] [PATCH] mxs: Include the right kernel image in the rootfs

2015-04-05 Thread Michael Heimpold
Am Sonntag, 5. April 2015, 12:01:47 schrieb Harald Geyer:
 Currently we always include the zImage if any image is selected for
 inclusion in the root filesystem. This patch adds discrimination
 between zImage and uImage.
 
 Signed-off-by: Harald Geyer har...@ccbib.org
 ---
  target/linux/mxs/image/Makefile |7 ++-
  1 file changed, 6 insertions(+), 1 deletion(-)
 
 diff --git a/target/linux/mxs/image/Makefile b/target/linux/mxs/image/Makefile
 index 55e88c2..9830a7d 100644
 --- a/target/linux/mxs/image/Makefile
 +++ b/target/linux/mxs/image/Makefile
 @@ -22,10 +22,15 @@ endef
  
  define Image/InstallKernel
  
 -  ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_KERNEL),)
 +  ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_ZIMAGE),)
   mkdir -p $(TARGET_DIR)/boot
   $(CP) $(LINUX_DIR)/arch/arm/boot/zImage $(TARGET_DIR)/boot/
endif
 +
 +  ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_UIMAGE),)
 + mkdir -p $(TARGET_DIR)/boot
 + cp $(KDIR)/uImage $(TARGET_DIR)/boot/
 +  endif

ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_DTB),)
   mkdir -p $(TARGET_DIR)/boot
 

Acked-by: Michael Heimpold m...@heimpold.de
___
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel