diff options
-rw-r--r-- | recipes-kernel/linux/linux-yocto_virtualization.inc | 4 |
1 files 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): | |||
21 | if kernel_cache: | 21 | if kernel_cache: |
22 | return feature | 22 | return feature |
23 | 23 | ||
24 | return "../recipe-sysroot-native/kcfg/" + feature | 24 | return "../../recipe-sysroot-native/kcfg/" + feature |
25 | 25 | ||
26 | # no conditional, just use the yocto-kernel-cache addition, yes | 26 | # no conditional, just use the yocto-kernel-cache addition, yes |
27 | # the src_uri isn't used, but we may need to check it in the future | 27 | # the src_uri isn't used, but we may need to check it in the future |
28 | def kernel_cache_feature(src_uri,feature): | 28 | def kernel_cache_feature(src_uri,feature): |
29 | return "../recipe-sysroot-native/kcfg/" + feature | 29 | return "../../recipe-sysroot-native/kcfg/" + feature |
30 | 30 | ||
31 | def distro_cond_feature(feature_fragment,distro_feature,d): | 31 | def distro_cond_feature(feature_fragment,distro_feature,d): |
32 | import bb | 32 | import bb |