mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 20:59:41 +02:00
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>
This commit is contained in:
parent
3653862e5b
commit
13928411b2
|
@ -21,12 +21,12 @@ def kernel_cache_cond_feature(src_uri,feature):
|
||||||
if kernel_cache:
|
if kernel_cache:
|
||||||
return feature
|
return feature
|
||||||
|
|
||||||
return "../recipe-sysroot-native/kcfg/" + feature
|
return "../../recipe-sysroot-native/kcfg/" + feature
|
||||||
|
|
||||||
# no conditional, just use the yocto-kernel-cache addition, yes
|
# 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
|
# the src_uri isn't used, but we may need to check it in the future
|
||||||
def kernel_cache_feature(src_uri,feature):
|
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):
|
def distro_cond_feature(feature_fragment,distro_feature,d):
|
||||||
import bb
|
import bb
|
||||||
|
|
Loading…
Reference in New Issue
Block a user