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

Reply via email to