summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Madison <matt@madison.systems>2021-12-16 03:48:35 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-12-20 15:29:01 +0000
commit94b371e1c9e3cea787d70d6d7a09f7d3d69a30aa (patch)
treedf538ea3171d81a606fd87c58207d5d6289369c0
parentf4edd2c98b3d12cd8778e1fc94ada7d04f2e8317 (diff)
downloadpoky-94b371e1c9e3cea787d70d6d7a09f7d3d69a30aa.tar.gz
qemu.bbclass: drop OLDEST_KERNEL reference
which is introducing task hash changes for some allarch package builds, and should no longer be needed with recent versions of qemu. (From OE-Core rev: 3a3cfb5f48fc92e548333e5856f3d3fcce27da46) Signed-off-by: Matt Madison <matt@madison.systems> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/qemu.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/qemu.bbclass b/meta/classes/qemu.bbclass
index 01a7b86ae1..333202b7c4 100644
--- a/meta/classes/qemu.bbclass
+++ b/meta/classes/qemu.bbclass
@@ -54,7 +54,7 @@ def qemu_run_binary(data, rootfs_path, binary):
54# this dance). For others (e.g. arm) a -cpu option is not necessary, since the 54# this dance). For others (e.g. arm) a -cpu option is not necessary, since the
55# qemu-arm default CPU supports all required architecture levels. 55# qemu-arm default CPU supports all required architecture levels.
56 56
57QEMU_OPTIONS = "-r ${OLDEST_KERNEL} ${@d.getVar("QEMU_EXTRAOPTIONS_%s" % d.getVar('PACKAGE_ARCH')) or ""}" 57QEMU_OPTIONS = "${@d.getVar("QEMU_EXTRAOPTIONS_%s" % d.getVar('PACKAGE_ARCH')) or ""}"
58QEMU_OPTIONS[vardeps] += "QEMU_EXTRAOPTIONS_${PACKAGE_ARCH}" 58QEMU_OPTIONS[vardeps] += "QEMU_EXTRAOPTIONS_${PACKAGE_ARCH}"
59 59
60QEMU_EXTRAOPTIONS_ppce500v2 = " -cpu e500v2" 60QEMU_EXTRAOPTIONS_ppce500v2 = " -cpu e500v2"