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:45:21 +0000 |
commit | 91c372f287732cdedbd7c1204c6ba5f34e5b93f6 (patch) | |
tree | c088d751fdbaed6e10c58f92aa8890848c225458 /meta/lib | |
parent | 2f9bf7bc97cb832f4db13df62ce09d96ce75e810 (diff) | |
download | poky-91c372f287732cdedbd7c1204c6ba5f34e5b93f6.tar.gz |
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].
(From OE-Core rev: 959396d5319df6d6599cc74077e85182768b92af)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-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): | |||
68 | self.assertTrue(find_task) | 68 | self.assertTrue(find_task) |
69 | 69 | ||
70 | def test_bitbake_g(self): | 70 | def test_bitbake_g(self): |
71 | result = bitbake('-g core-image-basic') | 71 | result = bitbake('-g core-image-full-cmdline') |
72 | self.assertTrue('NOTE: PN build list saved to \'pn-buildlist\'' in result.output) | 72 | self.assertTrue('NOTE: PN build list saved to \'pn-buildlist\'' in result.output) |
73 | self.assertTrue('openssh' in ftools.read_file(os.path.join(self.builddir, 'pn-buildlist'))) | 73 | self.assertTrue('openssh' in ftools.read_file(os.path.join(self.builddir, 'pn-buildlist'))) |
74 | for f in ['pn-buildlist', 'pn-depends.dot', 'package-depends.dot', 'task-depends.dot']: | 74 | for f in ['pn-buildlist', 'pn-depends.dot', 'package-depends.dot', 'task-depends.dot']: |