diff options
author | Saul Wold <sgw@linux.intel.com> | 2015-06-30 15:48:02 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-07-08 00:01:20 +0100 |
commit | cb196d2f0d2842cb69c812c77dafcc1a6018dcab (patch) | |
tree | 0ce85d6e53bdd8c770ba499a0b0d60e62ca8c2d4 /meta | |
parent | 992c02c8cc2555647d85edb640505af060438710 (diff) | |
download | poky-cb196d2f0d2842cb69c812c77dafcc1a6018dcab.tar.gz |
core-image-kernel-dev: Define a correct subset of TEST_SUITES to run for this image
Since this image can be built with both poky and poky-lsb, ensure the correct
tests are run in both cases, the auto detection does not quite work right in the
poky-lsb case since not all the Posix cmdline utilites are added. Add connman and
connman test for network sanity
(From OE-Core rev: 8df57b4b1a110dcbaab9652795fe5c0d86019554)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-extended/images/core-image-kernel-dev.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-extended/images/core-image-kernel-dev.bb b/meta/recipes-extended/images/core-image-kernel-dev.bb index e1aa71a79f..6b636ed080 100644 --- a/meta/recipes-extended/images/core-image-kernel-dev.bb +++ b/meta/recipes-extended/images/core-image-kernel-dev.bb | |||
@@ -4,7 +4,7 @@ sensitive to kernel updates and version changes" | |||
4 | # Could also be core-image-basic, but we'll keep this small for now | 4 | # Could also be core-image-basic, but we'll keep this small for now |
5 | require recipes-core/images/core-image-minimal.bb | 5 | require recipes-core/images/core-image-minimal.bb |
6 | 6 | ||
7 | KERNEL_DEV_UTILS ?= "dropbear" | 7 | KERNEL_DEV_UTILS ?= "dropbear connman" |
8 | KERNEL_DEV_TOOLS ?= "packagegroup-core-tools-profile packagegroup-core-buildessential kernel-devsrc" | 8 | KERNEL_DEV_TOOLS ?= "packagegroup-core-tools-profile packagegroup-core-buildessential kernel-devsrc" |
9 | KERNEL_DEV_MODULE ?= "kernel-modules" | 9 | KERNEL_DEV_MODULE ?= "kernel-modules" |
10 | 10 | ||
@@ -15,3 +15,6 @@ CORE_IMAGE_EXTRA_INSTALL += "${KERNEL_DEV_MODULE} \ | |||
15 | 15 | ||
16 | # We need extra space for things like kernel builds, etc. | 16 | # We need extra space for things like kernel builds, etc. |
17 | IMAGE_ROOTFS_EXTRA_SPACE_append += "+ 3000000" | 17 | IMAGE_ROOTFS_EXTRA_SPACE_append += "+ 3000000" |
18 | |||
19 | # Let's define our own subset to test, we can later add a on-target kernel build even! | ||
20 | DEFAULT_TEST_SUITES = "ping ssh df connman syslog scp date dmesg parselogs" | ||