From: Denys Dmytriyenko <[email protected]> We used to generate a different toolchain/SDK based on whether the target was graphics-enabled or headless. Now we build the same full toolchain/SDK regardles, so there's no need to check for "opengl" distro feature inside TISDK bundle, as it's enabled in our distro unconditionally anyway.
Signed-off-by: Denys Dmytriyenko <[email protected]> --- meta-arago-distro/recipes-core/images/tisdk-core-bundle.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-arago-distro/recipes-core/images/tisdk-core-bundle.inc b/meta-arago-distro/recipes-core/images/tisdk-core-bundle.inc index c7bd9629..43b1ef5f 100644 --- a/meta-arago-distro/recipes-core/images/tisdk-core-bundle.inc +++ b/meta-arago-distro/recipes-core/images/tisdk-core-bundle.inc @@ -31,8 +31,8 @@ DTB_FILTER:j721s2 = "j721s2" # List of target side images to build for the SDK TARGET_IMAGES = "tisdk-base-image tisdk-default-image tisdk-thinlinux-image tisdk-bootstrap-image" -TISDK_TOOLCHAIN = "${@bb.utils.contains('DISTRO_FEATURES','opengl','meta-toolchain-arago-tisdk','meta-toolchain-arago-tisdk-server',d)}" -TOOLCHAIN_SUFFIX = "${@bb.utils.contains('DISTRO_FEATURES','opengl','-tisdk','-tisdk-server',d)}" +TISDK_TOOLCHAIN = "meta-toolchain-arago-tisdk" +TOOLCHAIN_SUFFIX = "-tisdk" IMAGE_INSTALL = "\ packagegroup-arago-tisdk-amsdk-sdk-host \ -- 2.25.1 -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#14777): https://lists.yoctoproject.org/g/meta-arago/message/14777 Mute This Topic: https://lists.yoctoproject.org/mt/99994829/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-arago/leave/10763299/21656/89520264/xyzzy [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
