diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2015-05-07 14:52:24 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-05-07 14:59:43 +0100 |
commit | 1f151174042b78d7ba4fa90e68e9ff0c13979fc9 (patch) | |
tree | 9ee3de261b3dd80c5eaf7537327e64e8b97a6370 | |
parent | b7cff751fd6fbfec5d7999978475841f057041af (diff) | |
download | poky-1f151174042b78d7ba4fa90e68e9ff0c13979fc9.tar.gz |
devtool: fix for rename of gcc-source
After OE-Core commit 67db7182faf6742b0d971d61d8c5ba34f69d2e12, PV is
appended to the end of the gcc-source PN, thus we need to handle that in
devtool and the corresponding test.
Part of the fix for [YOCTO #7729].
(From OE-Core rev: 440029dc229a566b9bead1481215d5e5760c5fe6)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/lib/oeqa/selftest/devtool.py | 10 | ||||
-rw-r--r-- | scripts/lib/devtool/standard.py | 2 |
2 files changed, 10 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/devtool.py b/meta/lib/oeqa/selftest/devtool.py index 2af6114948..2344fac5d8 100644 --- a/meta/lib/oeqa/selftest/devtool.py +++ b/meta/lib/oeqa/selftest/devtool.py | |||
@@ -325,7 +325,15 @@ class DevtoolTests(oeSelfTest): | |||
325 | self.track_for_cleanup(workspacedir) | 325 | self.track_for_cleanup(workspacedir) |
326 | self.add_command_to_tearDown('bitbake-layers remove-layer */workspace') | 326 | self.add_command_to_tearDown('bitbake-layers remove-layer */workspace') |
327 | 327 | ||
328 | testrecipes = 'perf gcc-source kernel-devsrc package-index core-image-minimal meta-toolchain packagegroup-core-sdk meta-ide-support'.split() | 328 | testrecipes = 'perf kernel-devsrc package-index core-image-minimal meta-toolchain packagegroup-core-sdk meta-ide-support'.split() |
329 | # Find actual name of gcc-source since it now includes the version - crude, but good enough for this purpose | ||
330 | result = runCmd('bitbake-layers show-recipes gcc-source*') | ||
331 | reading = False | ||
332 | for line in result.output.splitlines(): | ||
333 | if line.startswith('=='): | ||
334 | reading = True | ||
335 | elif reading and not line.startswith(' '): | ||
336 | testrecipes.append(line.split(':')[0]) | ||
329 | for testrecipe in testrecipes: | 337 | for testrecipe in testrecipes: |
330 | # Check it's a valid recipe | 338 | # Check it's a valid recipe |
331 | bitbake('%s -e' % testrecipe) | 339 | bitbake('%s -e' % testrecipe) |
diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py index cb4b57be92..81a44d4513 100644 --- a/scripts/lib/devtool/standard.py +++ b/scripts/lib/devtool/standard.py | |||
@@ -124,7 +124,7 @@ def _check_compatible_recipe(pn, d): | |||
124 | logger.error("The perf recipe does not actually check out source and thus cannot be supported by this tool") | 124 | logger.error("The perf recipe does not actually check out source and thus cannot be supported by this tool") |
125 | return False | 125 | return False |
126 | 126 | ||
127 | if pn in ['gcc-source', 'kernel-devsrc', 'package-index']: | 127 | if pn in ['kernel-devsrc', 'package-index'] or pn.startswith('gcc-source'): |
128 | logger.error("The %s recipe is not supported by this tool" % pn) | 128 | logger.error("The %s recipe is not supported by this tool" % pn) |
129 | return False | 129 | return False |
130 | 130 | ||