diff options
author | Tom Zanussi <tom.zanussi@intel.com> | 2012-04-11 14:05:08 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-14 22:58:14 +0100 |
commit | 6f527e23e045fd948fddf6775705f4f7f7feefd6 (patch) | |
tree | 0b2b822c4f8dd3d7183871af8c5edabeae5d066d /scripts/lib/bsp/kernel.py | |
parent | 0a4a7578b84059d598aa775cc6362e1ef68ec3b3 (diff) | |
download | poky-6f527e23e045fd948fddf6775705f4f7f7feefd6.tar.gz |
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>
Diffstat (limited to 'scripts/lib/bsp/kernel.py')
-rw-r--r-- | scripts/lib/bsp/kernel.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/bsp/kernel.py b/scripts/lib/bsp/kernel.py index b4e7fbf062..360851b205 100644 --- a/scripts/lib/bsp/kernel.py +++ b/scripts/lib/bsp/kernel.py | |||
@@ -657,7 +657,7 @@ def find_giturl(context): | |||
657 | bbs = glob.glob(bbglob) | 657 | bbs = glob.glob(bbglob) |
658 | for kernel in bbs: | 658 | for kernel in bbs: |
659 | filename = os.path.splitext(os.path.basename(kernel))[0] | 659 | filename = os.path.splitext(os.path.basename(kernel))[0] |
660 | if filename == filebase: | 660 | if filename in filebase: |
661 | giturl = extract_giturl(kernel) | 661 | giturl = extract_giturl(kernel) |
662 | return giturl | 662 | return giturl |
663 | 663 | ||