From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mail.openembedded.org (Postfix) with ESMTP id 97FA16FFF7 for ; Sat, 13 Feb 2016 11:11:57 +0000 (UTC) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP; 13 Feb 2016 03:11:58 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.22,440,1449561600"; d="scan'208";a="883635254" Received: from linux.intel.com ([10.23.219.25]) by orsmga001.jf.intel.com with ESMTP; 13 Feb 2016 03:11:57 -0800 Received: from vmed.fi.intel.com (vmed.fi.intel.com [10.237.72.51]) by linux.intel.com (Postfix) with ESMTP id E10B06A4004 for ; Sat, 13 Feb 2016 03:59:47 -0800 (PST) From: Ed Bartosh To: openembedded-core@lists.openembedded.org Date: Sat, 13 Feb 2016 11:02:07 +0200 Message-Id: X-Mailer: git-send-email 2.1.4 Subject: [wic][PATCH v3 00/14] Support for wic images in runqemu and oe-selftest X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Feb 2016 11:11:58 -0000 Hi, This patchset contains set of fixes for wic, runqemu and oe-selftest to support booting and testing wic images in qemu. This work is based on Cristian's work from poky-contrib:ciorga/wic-testing Thank you Cristian! The patchset also includes bugfix for wic --use-uuid option and a bit of code cleanup for wic tests. [YOCTO #8691] [YOCTO #8498] [YOCTO #8499] Changes in v2: Dropped "runqemu: don't use virtio for wic images" as suggested by reviewers. Changes in v3: Fixed test_wic_image_type test case The following changes since commit 971fafba6a04531acc73ed348f04a6315be6d0ef: maintainers.inc: include libjpeg-turbo and mmc-utils (2016-02-12 18:03:47 +0000) are available in the git repository at: git://git.yoctoproject.org/poky-contrib ed/oe-core/qemuRunner-wic-8498 http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ed/oe-core/qemuRunner-wic-8498 Ed Bartosh (14): runqemu: add support for wic images runqemu: don't set KERNEL for wic images runqemu: support path/to/-.wic oe-selftest: remove unused parameter qemurunner: add parameter to method 'start' oeqa/targetcontrol: make ssh control optional oeqa/targetcontrol: support wic image type wic-image-minimal: change IMAGE_FSTYPES wic-image-minimal: update .wks to boot by qemu oe-selftest: add new wic testcase wic: fix processing of --use-uuid wic-image-minimal: use uuid for root partition oe-selftest: pylinted wic tests oe-selftest: don't use specific tasks .../recipes-test/images/wic-image-minimal.bb | 4 +- .../recipes-test/images/wic-image-minimal.wks | 10 ++--- meta/lib/oeqa/selftest/devtool.py | 2 +- meta/lib/oeqa/selftest/imagefeatures.py | 6 +-- meta/lib/oeqa/selftest/wic.py | 34 ++++++++++------ meta/lib/oeqa/targetcontrol.py | 20 +++++----- meta/lib/oeqa/utils/commands.py | 4 +- meta/lib/oeqa/utils/qemurunner.py | 45 +++++++++++----------- scripts/lib/wic/partition.py | 3 ++ scripts/runqemu | 15 +++++--- scripts/runqemu-internal | 18 ++++----- 11 files changed, 90 insertions(+), 71 deletions(-) -- Regards, Ed