summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorKai Kang <kai.kang@windriver.com>2021-07-25 22:25:36 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-07-28 23:47:00 +0100
commit3ad52f4a4847de836f7fe227fb6193fbd94fde1d (patch)
tree7c643e09cf37af4a927eaedc1c88a7d5c99556fc /meta
parent331c23aea82cfdb2d1865cabb3f376f8c3d4e4f9 (diff)
downloadpoky-3ad52f4a4847de836f7fe227fb6193fbd94fde1d.tar.gz
u-boot_2021.07: set UBOOT_MACHINE for qemumips and qemumips64
It fails to build u-boot 2021.07 for qemumips and qemumips64: | *** Can't find default configuration "arch/../configs/qemu_mips64_defconfig"! According to https://source.denx.de/u-boot/u-boot/-/commit/5308a71 set UBOOT_MACHINE with malta defconfigs for qemumips and qemumips64. (From OE-Core rev: 337e461ff92cd114b97e19ecf79806030b9b4666) Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/conf/machine/qemumips.conf2
-rw-r--r--meta/conf/machine/qemumips64.conf2
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/conf/machine/qemumips.conf b/meta/conf/machine/qemumips.conf
index 1373e4cba0..9b602fcd1f 100644
--- a/meta/conf/machine/qemumips.conf
+++ b/meta/conf/machine/qemumips.conf
@@ -9,7 +9,7 @@ require conf/machine/include/qemuboot-mips.inc
9KERNEL_IMAGETYPE = "vmlinux" 9KERNEL_IMAGETYPE = "vmlinux"
10KERNEL_ALT_IMAGETYPE = "vmlinux.bin" 10KERNEL_ALT_IMAGETYPE = "vmlinux.bin"
11 11
12UBOOT_MACHINE ?= "qemu_mips_defconfig" 12UBOOT_MACHINE ?= "malta_defconfig"
13 13
14SERIAL_CONSOLES ?= "115200;ttyS0 115200;ttyS1" 14SERIAL_CONSOLES ?= "115200;ttyS0 115200;ttyS1"
15 15
diff --git a/meta/conf/machine/qemumips64.conf b/meta/conf/machine/qemumips64.conf
index 1e77486491..b37d78989b 100644
--- a/meta/conf/machine/qemumips64.conf
+++ b/meta/conf/machine/qemumips64.conf
@@ -11,7 +11,7 @@ QB_CPU = "-cpu MIPS64R2-generic"
11KERNEL_IMAGETYPE = "vmlinux" 11KERNEL_IMAGETYPE = "vmlinux"
12KERNEL_ALT_IMAGETYPE = "vmlinux.bin" 12KERNEL_ALT_IMAGETYPE = "vmlinux.bin"
13 13
14UBOOT_MACHINE ?= "qemu_mips64_defconfig" 14UBOOT_MACHINE ?= "malta64_defconfig"
15 15
16SERIAL_CONSOLES ?= "115200;ttyS0 115200;ttyS1" 16SERIAL_CONSOLES ?= "115200;ttyS0 115200;ttyS1"
17 17