This service is available only in Japanese-language.

不要なパッケージの削除について

openstlinux dunfellを使用しています。
packagegroup-framework-core-baseはイメージにふくめ,
packagegroup-framework-core-base-displayをイメージから削除したいのですが,どうしてもイメージに含まれてしまいます。

試行した記載は以下のとおりです。

CORE_IMAGE_EXTRA_INSTALL += " \
packagegroup-framework-core-base \
packagegroup-framework-tools-base \
\
${@bb.utils.contains('COMBINED_FEATURES', 'optee', 'packagegroup-optee-core', '', d)} \
${@bb.utils.contains('COMBINED_FEATURES', 'optee', 'packagegroup-optee-test', '', d)} \
"
RDEPENDS_packagegroup-framework-core-base_remove = " packagegroup-framework-core-base-display "
IMAGE_INSTALL_remove += " packagegroup-framework-core-base-display "

解決方法ございましたらご教示いただけますと幸いです。

rootfs イメージの生成で参照される変数は以下に説明されています。
https://www.yoctoproject.org/docs/3.1/overview-manual/overview-manual.ht...

以下のように記載しましたが,エラーが発生してしまいます。
CORE_IMAGE_EXTRA_INSTALL += " \
packagegroup-framework-core-base \
packagegroup-framework-tools-base \
\
${@bb.utils.contains('COMBINED_FEATURES', 'optee', 'packagegroup-optee-core', '', d)} \
${@bb.utils.contains('COMBINED_FEATURES', 'optee', 'packagegroup-optee-test', '', d)} \
"
RDEPENDS_packagegroup-framework-core-base_remove = " packagegroup-framework-core-base-display "
IMAGE_INSTALL_remove += " packagegroup-framework-core-base-display "
PACKAGE_EXCLUDE += " packagegroup-framework-core-base-display "

エラー内容
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
packagegroup-framework-core-base : Depends: packagegroup-framework-core-base-display but it is not installable

もし解決方法がございましたらご教示いただけますと幸いです。
あるいは根本的にpackagegroup-framework-core-baseの使用をやめ,packagegroup内の必要なパッケージのみを記載したほうが良いのでしょうか。

必要なパッケージのみ記載したグループを定義することで、不要なパッケージは除けると考えます。

ご回答いただきありがとうございます。
新規packagegroupを作成したほうが良いとの旨,承知いたしました。