mirror of
https://git.yoctoproject.org/poky
synced 2026-04-29 18:32:20 +02:00
yocto-bsp: enable property value display of nested properties
Previous versions of yocto-bsp mapped every input element to a unique variable name, which is what the current property value display code expects. When that was changed to a nested form, the display code wasn't updated to match - this updated does that. Fixes [YOCTO #2222] Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
This commit is contained in:
committed by
Richard Purdie
parent
0a4a7578b8
commit
6f527e23e0
@@ -657,7 +657,7 @@ def find_giturl(context):
|
||||
bbs = glob.glob(bbglob)
|
||||
for kernel in bbs:
|
||||
filename = os.path.splitext(os.path.basename(kernel))[0]
|
||||
if filename == filebase:
|
||||
if filename in filebase:
|
||||
giturl = extract_giturl(kernel)
|
||||
return giturl
|
||||
|
||||
|
||||
Reference in New Issue
Block a user