We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm installing intel-oneapi-mkl via RDEPENDS of another recipe.
intel-oneapi-mkl
RDEPENDS
The image has read-only-rootfs set in IMAGE_FEATURES.
read-only-rootfs
IMAGE_FEATURES
Build fails with:
ERROR: do_rootfs: The following packages could not be configured offline and rootfs is read-only: ['100-setup-intel-oneapi-env']
setup-intel-oneapi-env is a dependency of intel-oneapi-mkl and getting installed here:
setup-intel-oneapi-env
meta-intel/dynamic-layers/openembedded-layer/recipes-oneapi/mkl/intel-oneapi-mkl_2024.0.0-49656.bb
Line 67 in 28b1937
I believe the pkg_postinst_ontarget function defined here is incompatible with read-only-rootfs:
pkg_postinst_ontarget
meta-intel/recipes-oneapi/setup-oneapi-env/setup-intel-oneapi-env_2023.0.0-25370.bb
Line 18 in 28b1937
The text was updated successfully, but these errors were encountered:
I can work around this by overriding the applicable recipes (e.g. intel-oneapi-mkl_%.bbappend) with:
intel-oneapi-mkl_%.bbappend
RDEPENDS:${PN}:remove = "setup-intel-oneapi-env"
I'm still on kirkstone, and had to do these recipes:
kirkstone
intel-oneapi-compiler_%.bbappend intel-oneapi-ipp_%.bbappend intel-oneapi-mkl_%.bbappend
Seems like these have been renamed/refactored some on master... first glance appears that the compiler recipe no longer has this as a dependency.
master
Sorry, something went wrong.
No branches or pull requests
I'm installing
intel-oneapi-mkl
viaRDEPENDS
of another recipe.The image has
read-only-rootfs
set inIMAGE_FEATURES
.Build fails with:
setup-intel-oneapi-env
is a dependency ofintel-oneapi-mkl
and getting installed here:meta-intel/dynamic-layers/openembedded-layer/recipes-oneapi/mkl/intel-oneapi-mkl_2024.0.0-49656.bb
Line 67 in 28b1937
I believe the
pkg_postinst_ontarget
function defined here is incompatible withread-only-rootfs
:meta-intel/recipes-oneapi/setup-oneapi-env/setup-intel-oneapi-env_2023.0.0-25370.bb
Line 18 in 28b1937
The text was updated successfully, but these errors were encountered: