All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] configs/qemu_xtensa_lx60_*: kernel build needs mkimage
@ 2019-04-30 20:37 Yann E. MORIN
  2019-04-30 20:46 ` Max Filippov
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Yann E. MORIN @ 2019-04-30 20:37 UTC (permalink / raw)
  To: buildroot

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 <jugurtha.belkalem@smile.fr>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Cc: Jugurtha BELKALEM <jugurtha.belkalem@smile.fr>
Cc: Max Filippov <jcmvbkbc@gmail.com>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Cc: Arnout Vandecappelle <arnout@mind.be>
---
 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
-- 
2.14.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH] configs/qemu_xtensa_lx60_*: kernel build needs mkimage
  2019-04-30 20:37 [Buildroot] [PATCH] configs/qemu_xtensa_lx60_*: kernel build needs mkimage Yann E. MORIN
@ 2019-04-30 20:46 ` Max Filippov
  2019-05-01  7:04 ` Peter Korsgaard
  2019-05-02  6:38 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Max Filippov @ 2019-04-30 20:46 UTC (permalink / raw)
  To: buildroot

On Tue, Apr 30, 2019 at 1:37 PM Yann E. MORIN <yann.morin.1998@free.fr> wrote:
>
> 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 <jugurtha.belkalem@smile.fr>
> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
> Cc: Jugurtha BELKALEM <jugurtha.belkalem@smile.fr>
> Cc: Max Filippov <jcmvbkbc@gmail.com>
> Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
> Cc: Arnout Vandecappelle <arnout@mind.be>
> ---
>  configs/qemu_xtensa_lx60_defconfig       | 3 +++
>  configs/qemu_xtensa_lx60_nommu_defconfig | 3 +++
>  2 files changed, 6 insertions(+)

Reviewed-by: Max Filippov <jcmvbkbc@gmail.com>

-- 
Thanks.
-- Max

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH] configs/qemu_xtensa_lx60_*: kernel build needs mkimage
  2019-04-30 20:37 [Buildroot] [PATCH] configs/qemu_xtensa_lx60_*: kernel build needs mkimage Yann E. MORIN
  2019-04-30 20:46 ` Max Filippov
@ 2019-05-01  7:04 ` Peter Korsgaard
  2019-05-02  6:38 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2019-05-01  7:04 UTC (permalink / raw)
  To: buildroot

>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:

 > 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 <jugurtha.belkalem@smile.fr>
 > Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
 > Cc: Jugurtha BELKALEM <jugurtha.belkalem@smile.fr>
 > Cc: Max Filippov <jcmvbkbc@gmail.com>
 > Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
 > Cc: Arnout Vandecappelle <arnout@mind.be>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH] configs/qemu_xtensa_lx60_*: kernel build needs mkimage
  2019-04-30 20:37 [Buildroot] [PATCH] configs/qemu_xtensa_lx60_*: kernel build needs mkimage Yann E. MORIN
  2019-04-30 20:46 ` Max Filippov
  2019-05-01  7:04 ` Peter Korsgaard
@ 2019-05-02  6:38 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2019-05-02  6:38 UTC (permalink / raw)
  To: buildroot

>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:

 > 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 <jugurtha.belkalem@smile.fr>
 > Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
 > Cc: Jugurtha BELKALEM <jugurtha.belkalem@smile.fr>
 > Cc: Max Filippov <jcmvbkbc@gmail.com>
 > Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
 > Cc: Arnout Vandecappelle <arnout@mind.be>

Committed to 2019.02.x, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-05-02  6:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-30 20:37 [Buildroot] [PATCH] configs/qemu_xtensa_lx60_*: kernel build needs mkimage Yann E. MORIN
2019-04-30 20:46 ` Max Filippov
2019-05-01  7:04 ` Peter Korsgaard
2019-05-02  6:38 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.