Why bitbake tdx-reference-multimedia-qt6-image build SDK?

I use this thead for build image with Qt6

It is very strange, but after add Qt6 changes from thread
bitbake tdx-reference-multimedia-qt6-image always build SDK
I don’t need run bitbake -c populate_sdk ...

How to disable ? Build SDK take very very long time

Hi @MariusM ,

Based on this similar question:

I think that the populate_sdk task is running as part of the image build because populate_sdk_qt6.bbclass is inheriting the populate_sdk class:

SUMMARY = "Meta package for building an installable Qt6 toolchain and SDK"

inherit populate_sdk populate_sdk_qt6_base

TOOLCHAIN_HOST_TASK:append = " nativesdk-packagegroup-qt6-toolchain-host"
TOOLCHAIN_TARGET_TASK:append = " packagegroup-qt6-modules"

FEATURE_PACKAGES_qtcreator-debug = "packagegroup-qt6-qtcreator-debug"

Try removing populate_sdk from it (keep populate_sdk_qt6_base inherited) and see if that solves the issue.

Best regards,
Lucas Akira

I confirm!
Now it’s normal

bitbake tdx-reference-multimedia-qt6-image build image
bitbake -c populate_sdk tdx-reference-multimedia-qt6-image build SDK

Glad I could help!

Best regards,
Lucas Akira