From 073229687395c036349ef7d2b5dba160cbce747d Mon Sep 17 00:00:00 2001 From: Javier Viguera Date: Tue, 1 Dec 2015 18:16:02 +0100 Subject: [PATCH] dey-image: support building QT SDK for DEY images The meta-qt5 layer provides a 'populate_sdk_qt5' class with all what's needed to build a SDK based on an image recipe. Inherit the class here so it's available for all DEY image recipes depending on 'dey-qt' image feature. https://jira.digi.com/browse/DEL-1973 Signed-off-by: Javier Viguera --- meta-digi-dey/classes/dey-image.bbclass | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/meta-digi-dey/classes/dey-image.bbclass b/meta-digi-dey/classes/dey-image.bbclass index 0b93738a0..78e12f53a 100644 --- a/meta-digi-dey/classes/dey-image.bbclass +++ b/meta-digi-dey/classes/dey-image.bbclass @@ -21,3 +21,8 @@ MD5_ROOT_PASSWD ?= "\$1\$SML0de4S\$lOWs3t82QAH0oEf8NyNKA0" EXTRA_USERS_PARAMS += "\ usermod -p '${MD5_ROOT_PASSWD}' root; \ " + +# +# Create QT5 capable toolchain/SDK if 'dey-qt' image feature is enabled +# +inherit ${@bb.utils.contains("IMAGE_FEATURES", "dey-qt", "populate_sdk_qt5", "",d)}