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:
Tom Zanussi
2012-04-11 14:05:08 -05:00
committed by Richard Purdie
parent 0a4a7578b8
commit 6f527e23e0
2 changed files with 55 additions and 3 deletions

View File

@@ -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