diff options
author | Jon Mason <jdmason@kudzu.us> | 2021-09-16 18:19:32 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-09-17 07:30:39 +0100 |
commit | be665a79831c3dab7623e75d112bb35d72e39a82 (patch) | |
tree | 74fe51d22ab646a1d71939e7c3fc1e01648a7a26 /meta | |
parent | c1db4933ce633b88b320865d4502d563e9894622 (diff) | |
download | poky-be665a79831c3dab7623e75d112bb35d72e39a82.tar.gz |
core-image-sato: Fix runqemu error for qemuarmv5
When attempting to execute runqemu on qemuarmv5, the following error is
encountered:
runqemu - ERROR - Failed to run qemu: qemu-system-arm: versatilepb: memory size must not exceed 256MB
To work around this, limit the QB_MEM size for qemuarmv5, similar to
what is being done for qemumips.
(From OE-Core rev: 6450138afebffcc55ab32afadd5fb979274fff2b)
Signed-off-by: Jon Mason <jdmason@kudzu.us>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-sato/images/core-image-sato.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-sato/images/core-image-sato.bb b/meta/recipes-sato/images/core-image-sato.bb index 35d0667737..e63a229d12 100644 --- a/meta/recipes-sato/images/core-image-sato.bb +++ b/meta/recipes-sato/images/core-image-sato.bb | |||
@@ -13,4 +13,5 @@ TOOLCHAIN_HOST_TASK:append = " nativesdk-intltool nativesdk-glib-2.0" | |||
13 | TOOLCHAIN_HOST_TASK:remove:task-populate-sdk-ext = " nativesdk-intltool nativesdk-glib-2.0" | 13 | TOOLCHAIN_HOST_TASK:remove:task-populate-sdk-ext = " nativesdk-intltool nativesdk-glib-2.0" |
14 | 14 | ||
15 | QB_MEM = '${@bb.utils.contains("DISTRO_FEATURES", "opengl", "-m 512", "-m 256", d)}' | 15 | QB_MEM = '${@bb.utils.contains("DISTRO_FEATURES", "opengl", "-m 512", "-m 256", d)}' |
16 | QB_MEM:qemuarmv5 = "-m 256" | ||
16 | QB_MEM:qemumips = "-m 256" | 17 | QB_MEM:qemumips = "-m 256" |