From: Ross Burton Date: Fri, 31 Jul 2020 12:56:33 +0000 (+0100) Subject: conf/machine: set UBOOT_MACHINE for qemuarm and qemuarm64 X-Git-Tag: uninative-2.9~132 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=7dd4100bf00fca0b98b762bb3815b8055f1201f2;p=openembedded-core.git conf/machine: set UBOOT_MACHINE for qemuarm and qemuarm64 These machines support booting U-Boot, so set the machine appropriately. Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- diff --git a/meta/conf/machine/qemuarm.conf b/meta/conf/machine/qemuarm.conf index 44e73a3070..3364dcf042 100644 --- a/meta/conf/machine/qemuarm.conf +++ b/meta/conf/machine/qemuarm.conf @@ -7,6 +7,8 @@ require conf/machine/include/qemu.inc KERNEL_IMAGETYPE = "zImage" +UBOOT_MACHINE ?= "qemu_arm_defconfig" + SERIAL_CONSOLES ?= "115200;ttyAMA0 115200;hvc0" SERIAL_CONSOLES_CHECK = "${SERIAL_CONSOLES}" diff --git a/meta/conf/machine/qemuarm64.conf b/meta/conf/machine/qemuarm64.conf index d0d6f38e42..fdd464d708 100644 --- a/meta/conf/machine/qemuarm64.conf +++ b/meta/conf/machine/qemuarm64.conf @@ -7,6 +7,8 @@ require conf/machine/include/qemu.inc KERNEL_IMAGETYPE = "Image" +UBOOT_MACHINE ?= "qemu_arm64_defconfig" + SERIAL_CONSOLES ?= "115200;ttyAMA0 115200;hvc0" SERIAL_CONSOLES_CHECK = "${SERIAL_CONSOLES}"