From patchwork Tue Aug 4 13:53:40 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nobuhiro Iwamatsu X-Patchwork-Id: 11700429 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 49E7816B1 for ; Tue, 4 Aug 2020 13:53:55 +0000 (UTC) Received: from web01.groups.io (web01.groups.io [66.175.222.12]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 31399208C7 for ; Tue, 4 Aug 2020 13:53:54 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=lists.cip-project.org header.i=@lists.cip-project.org header.b="DRhCAcFM" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 31399208C7 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=toshiba.co.jp Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=bounce+64572+5096+4520428+8129116@lists.cip-project.org X-Received: by 127.0.0.2 with SMTP id tE3XYY4521763xJzDaQTS6kC; Tue, 04 Aug 2020 06:53:54 -0700 X-Received: from mo-csw.securemx.jp (mo-csw.securemx.jp [210.130.202.155]) by mx.groups.io with SMTP id smtpd.web10.5721.1596549233047353267 for ; Tue, 04 Aug 2020 06:53:54 -0700 X-Received: by mo-csw.securemx.jp (mx-mo-csw1516) id 074DrpuT019175; Tue, 4 Aug 2020 22:53:51 +0900 X-Iguazu-Qid: 34tMd2lTgEqalaZDV2 X-Iguazu-QSIG: v=2; s=0; t=1596549231; q=34tMd2lTgEqalaZDV2; m=wzultSnxbz2nZSEKkwk18bZuMYbSCjJTIbYt8EGf55U= X-Received: from imx2.toshiba.co.jp (imx2.toshiba.co.jp [106.186.93.51]) by relay.securemx.jp (mx-mr1513) id 074DrojO031817; Tue, 4 Aug 2020 22:53:50 +0900 X-Received: from enc01.localdomain ([106.186.93.100]) by imx2.toshiba.co.jp with ESMTP id 074DroCh019134 for ; Tue, 4 Aug 2020 22:53:50 +0900 (JST) X-Received: from hop001.toshiba.co.jp ([133.199.164.63]) by enc01.localdomain with ESMTP id 074DroC9020803 for ; Tue, 4 Aug 2020 22:53:50 +0900 From: "Nobuhiro Iwamatsu" To: cip-dev@lists.cip-project.org Cc: Nobuhiro Iwamatsu Subject: [cip-dev] [isar-cip-core][PATCH 1/3] cip-core-image-test: Add recipe Date: Tue, 4 Aug 2020 22:53:40 +0900 X-TSB-HOP: ON Message-Id: <20200804135342.446609-1-nobuhiro1.iwamatsu@toshiba.co.jp> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: Sender: cip-dev@lists.cip-project.org List-Id: Mailing-List: list cip-dev@lists.cip-project.org; contact cip-dev+owner@lists.cip-project.org Delivered-To: mailing list cip-dev@lists.cip-project.org Reply-To: cip-dev@lists.cip-project.org X-Gm-Message-State: V7OU6w3RMQu6K44zKpGxb4q5x4520428AA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=lists.cip-project.org; q=dns/txt; s=20140610; t=1596549234; bh=0o2tEY30uVxJL/YME4sR05sQ4FGo0nrXeZVo0krTdpU=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=DRhCAcFMxP0gMyIEbstT21DREd+5g/kkkSUySknbsApH9cTzO+BtINWq7xXO4yeNc22 WXCHIUjihAJjNpy7NapZySGRN8SYkALKNXdIk8ReFlr01m/3sauapMJTANhzmpx7+EKEd /s69S44Ax+8HsW22AizHg4CcqurbyVXRlbI= This recipe provides an image for testing. If use this, it will create an image containing LTP(ltp-full), rt-tests and stress-ng. Signed-off-by: Nobuhiro Iwamatsu --- recipes-core/images/cip-core-image-test.bb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 recipes-core/images/cip-core-image-test.bb diff --git a/recipes-core/images/cip-core-image-test.bb b/recipes-core/images/cip-core-image-test.bb new file mode 100644 index 0000000..e2b15fc --- /dev/null +++ b/recipes-core/images/cip-core-image-test.bb @@ -0,0 +1,18 @@ +# +# CIP Core, generic profile +# +# Copyright (c) Siemens AG, 2019 +# +# Authors: +# Jan Kiszka +# +# SPDX-License-Identifier: MIT +# +# +inherit dpkg-raw +require cip-core-image.bb + +DESCRIPTION = "CIP Core image including test packages" + +IMAGE_INSTALL += "ltp-full" +DEBIAN_DEPENDS += "rt-tests, stress-ng"