From 7cf13b9b0644295dc8a0aa33838b304eb6ebc444 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Tue, 30 Apr 2019 22:37:34 +0200 Subject: [PATCH] configs/qemu_xtensa_lx60_*: kernel build needs mkimage Following ffbe46a5295 ("linux: simplify LINUX_BUILD_CMDS"), the Linux kernel build for these xtensa qemu builds an image format that needs mkimage. Reported-by: Jugurtha BELKALEM Signed-off-by: Yann E. MORIN Cc: Jugurtha BELKALEM Cc: Max Filippov Cc: Thomas Petazzoni Cc: Arnout Vandecappelle Reviewed-by: Max Filippov Signed-off-by: Peter Korsgaard --- configs/qemu_xtensa_lx60_defconfig | 3 +++ configs/qemu_xtensa_lx60_nommu_defconfig | 3 +++ 2 files changed, 6 insertions(+) diff --git a/configs/qemu_xtensa_lx60_defconfig b/configs/qemu_xtensa_lx60_defconfig index 6bf48a2ada..4287e6abeb 100644 --- a/configs/qemu_xtensa_lx60_defconfig +++ b/configs/qemu_xtensa_lx60_defconfig @@ -23,3 +23,6 @@ BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/xtensa-lx60/linux.config" BR2_LINUX_KERNEL_IMAGE_TARGET_CUSTOM=y BR2_LINUX_KERNEL_IMAGE_NAME="Image.elf" BR2_LINUX_KERNEL_IMAGE_TARGET_NAME="Image" + +# Kernel needs mkimage +BR2_PACKAGE_HOST_UBOOT_TOOLS=y diff --git a/configs/qemu_xtensa_lx60_nommu_defconfig b/configs/qemu_xtensa_lx60_nommu_defconfig index 5ff9646270..37b6743588 100644 --- a/configs/qemu_xtensa_lx60_nommu_defconfig +++ b/configs/qemu_xtensa_lx60_nommu_defconfig @@ -27,3 +27,6 @@ BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/xtensa-lx60/linux-nommu.config" BR2_LINUX_KERNEL_IMAGE_TARGET_CUSTOM=y BR2_LINUX_KERNEL_IMAGE_NAME="Image.elf" BR2_LINUX_KERNEL_IMAGE_TARGET_NAME="Image" + +# Kernel needs mkimage +BR2_PACKAGE_HOST_UBOOT_TOOLS=y