summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2025-05-10 09:43:45 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-05-12 22:01:55 +0100
commit49cce6af422997a8a4f473bc18f83b2f6b48630d (patch)
treea5f93c4eb40b2f53480df371521036e8b2b05879
parentfa6d138447ce72835b2f9ab0a4932f60bca64488 (diff)
downloadpoky-49cce6af422997a8a4f473bc18f83b2f6b48630d.tar.gz
core-image-sato: fix SDK dependency on glib
Adding nativesdk-glib-2.0 to the SDK isn't actually very useful as that is just the library and not the ancillery tools (since [1]). Switch the dependency to glib-2.0-utils so that the host-side tools are available in SDKs. [1] oe-core b649cf5c09a ("glib-2.0: add dependencies to fix ptest failures") (From OE-Core rev: 327308f8c4b45f5728aa5ca79ea71fb42370e717) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-sato/images/core-image-sato.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-sato/images/core-image-sato.bb b/meta/recipes-sato/images/core-image-sato.bb
index 9200ae5440..5ff35d772c 100644
--- a/meta/recipes-sato/images/core-image-sato.bb
+++ b/meta/recipes-sato/images/core-image-sato.bb
@@ -10,8 +10,8 @@ LICENSE = "MIT"
10 10
11inherit core-image 11inherit core-image
12 12
13TOOLCHAIN_HOST_TASK:append = " nativesdk-intltool nativesdk-glib-2.0" 13TOOLCHAIN_HOST_TASK:append = " nativesdk-intltool nativesdk-glib-2.0-utils"
14TOOLCHAIN_HOST_TASK:remove:task-populate-sdk-ext = " nativesdk-intltool nativesdk-glib-2.0" 14TOOLCHAIN_HOST_TASK:remove:task-populate-sdk-ext = " nativesdk-intltool nativesdk-glib-2.0-utils"
15 15
16QB_MEM = '${@bb.utils.contains("DISTRO_FEATURES", "opengl", "-m 512", "-m 256", d)}' 16QB_MEM = '${@bb.utils.contains("DISTRO_FEATURES", "opengl", "-m 512", "-m 256", d)}'
17QB_MEM:qemuarmv5 = "-m 256" 17QB_MEM:qemuarmv5 = "-m 256"