diff options
author | Bruce Ashfield <bruce.ashfield@gmail.com> | 2024-05-28 00:30:33 +0000 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2024-05-29 13:16:56 +0000 |
commit | 13928411b25d52d0cabbfd5bff7affd18d6c8a5c (patch) | |
tree | 6bf92aba4b46eb403a96031b2c1660727cfb1a9e | |
parent | 3653862e5b2003c2ff780de136660c1b3967c915 (diff) | |
download | meta-virtualization-13928411b25d52d0cabbfd5bff7affd18d6c8a5c.tar.gz |
kernel: fix fragment path
Now that UNPACKDIR is used to unpack sources we have an
extra level of indirection to locate our cloned fragments.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-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 |