From e9b44579007cbaa24c6b39ff788be3a927797660 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Mon, 22 Feb 2016 16:24:07 +0000 Subject: oeqa/selftest/buildoptions: build -minimal instead of -sato images When checking enabling buildhistory doesn't change anything but rootfs stamps, just build core-image-minimal instead of -sato to reduce the time this test takes. Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- meta/lib/oeqa/selftest/buildoptions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/lib/oeqa/selftest/buildoptions.py b/meta/lib/oeqa/selftest/buildoptions.py index 602d95f9bd..e2d12c3f11 100644 --- a/meta/lib/oeqa/selftest/buildoptions.py +++ b/meta/lib/oeqa/selftest/buildoptions.py @@ -147,12 +147,12 @@ class BuildhistoryTests(BuildhistoryBase): features = 'TMPDIR = "%s"\n' % tmpdir1 self.write_config(features) - bitbake('core-image-sato -S none -c rootfs') + bitbake('core-image-minimal -S none -c rootfs') features = 'TMPDIR = "%s"\n' % tmpdir2 features += 'INHERIT += "buildhistory"\n' self.write_config(features) - bitbake('core-image-sato -S none -c rootfs') + bitbake('core-image-minimal -S none -c rootfs') def get_files(d): f = [] -- cgit 1.2.3-korg