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: lucaceresoli/bug-15201-perf-libtraceevent-missing~10429 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7dd4100bf00fca0b98b762bb3815b8055f1201f2;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.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 44e73a30706..3364dcf0421 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 d0d6f38e425..fdd464d708b 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}"