diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2014-03-06 16:46:08 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-07 14:44:25 +0000 |
commit | 959396d5319df6d6599cc74077e85182768b92af (patch) | |
tree | 46a6d136aa0791c21238ad61388dc03a7d143ff0 /meta/lib/oeqa | |
parent | b60c68a4ea937a647e13d69dfecefb7dcbda95a0 (diff) | |
download | openembedded-core-959396d5319df6d6599cc74077e85182768b92af.tar.gz openembedded-core-959396d5319df6d6599cc74077e85182768b92af.tar.bz2 openembedded-core-959396d5319df6d6599cc74077e85182768b92af.zip |
core-image-basic / packagegroup-core-basic: rename to *-full-cmdline
This more accurately represents what this image and packagegroup are
intended to provide (a more complete command-line environment similar
to what you would find on a traditional Linux system), and avoids
confusion with the similarly named core-image-base and
packagegroup-base.
Fixes [YOCTO #2424].
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa')
-rw-r--r-- | meta/lib/oeqa/selftest/bbtests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/bbtests.py b/meta/lib/oeqa/selftest/bbtests.py index 7ca0802428..ee1f82a217 100644 --- a/meta/lib/oeqa/selftest/bbtests.py +++ b/meta/lib/oeqa/selftest/bbtests.py @@ -68,7 +68,7 @@ class BitbakeTests(oeSelfTest): self.assertTrue(find_task) def test_bitbake_g(self): - result = bitbake('-g core-image-basic') + result = bitbake('-g core-image-full-cmdline') self.assertTrue('NOTE: PN build list saved to \'pn-buildlist\'' in result.output) self.assertTrue('openssh' in ftools.read_file(os.path.join(self.builddir, 'pn-buildlist'))) for f in ['pn-buildlist', 'pn-depends.dot', 'package-depends.dot', 'task-depends.dot']: |