this avoids: | ERROR: Feature '../recipe-sysroot-native/kcfg/cfg/virtio.scc' not found, this will cause configuration failures. | ERROR: Check the SRC_URI for meta-data repositories or directories that may be missing | ERROR: Set KERNEL_DANGLING_FEATURES_WARN_ONLY to ignore this issue
Signed-off-by: Markus Volk <[email protected]> --- recipes-kernel/linux/linux-yocto_virtualization.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes-kernel/linux/linux-yocto_virtualization.inc b/recipes-kernel/linux/linux-yocto_virtualization.inc index 9a6554d1..5edaef94 100644 --- a/recipes-kernel/linux/linux-yocto_virtualization.inc +++ b/recipes-kernel/linux/linux-yocto_virtualization.inc @@ -21,12 +21,12 @@ def kernel_cache_cond_feature(src_uri,feature): if kernel_cache: return feature - return "../recipe-sysroot-native/kcfg/" + feature + return "../../recipe-sysroot-native/kcfg/" + feature # no conditional, just use the yocto-kernel-cache addition, yes # the src_uri isn't used, but we may need to check it in the future def kernel_cache_feature(src_uri,feature): - return "../recipe-sysroot-native/kcfg/" + feature + return "../../recipe-sysroot-native/kcfg/" + feature def distro_cond_feature(feature_fragment,distro_feature,d): import bb -- 2.44.0
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#8766): https://lists.yoctoproject.org/g/meta-virtualization/message/8766 Mute This Topic: https://lists.yoctoproject.org/mt/106329585/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-virtualization/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
