Martin already sent this patch, and I have a similar one that I did as well.
As I was saying on the list late last week, I've been on vacation for the past week and a half and have most of the recent breakage fixed, but it needs more testing before I push the changes. Cheers, Bruce On Mon, May 27, 2024 at 9:17 AM Markus Volk via lists.yoctoproject.org <[email protected]> wrote: > > 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 > > > > -- - Thou shalt not follow the NULL pointer, for chaos and madness await thee at its end - "Use the force Harry" - Gandalf, Star Trek II
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#8767): https://lists.yoctoproject.org/g/meta-virtualization/message/8767 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]] -=-=-=-=-=-=-=-=-=-=-=-
