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 "
解決方法ございましたらご教示いただけますと幸いです。
yakuhito
2021/11/26 (金) 21:25
PACKAGE_EXCLUDE 変数に不要なパッケージを指定することで、rootfsから除外が可能かと
rootfs イメージの生成で参照される変数は以下に説明されています。
https://www.yoctoproject.org/docs/3.1/overview-manual/overview-manual.ht...
mackey
2021/11/29 (月) 09:06
依存関係のエラーが発生してしまいます
以下のように記載しましたが,エラーが発生してしまいます。
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内の必要なパッケージのみを記載したほうが良いのでしょうか。
yakuhito
2021/11/29 (月) 09:13
packagegroupで不要なパッケージが入ってしまう場合は、新規にpackage-groupを定義すれば良いかと
必要なパッケージのみ記載したグループを定義することで、不要なパッケージは除けると考えます。
mackey
2021/11/29 (月) 09:17
ご回答いただきありがとうございます。
ご回答いただきありがとうございます。
新規packagegroupを作成したほうが良いとの旨,承知いたしました。