[OpenWrt-Devel] [PATCH] mxs: Include the right kernel image in the rootfs
Michael Heimpold
mhei at heimpold.de
Sun Apr 5 11:51:48 EDT 2015
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 <harald at 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 <mhei at heimpold.de>
_______________________________________________
openwrt-devel mailing list
openwrt-devel at lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel
More information about the openwrt-devel
mailing list