From patchwork Tue Aug 4 13:47:26 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nobuhiro Iwamatsu X-Patchwork-Id: 11700419 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 B7966722 for ; Tue, 4 Aug 2020 13:47:42 +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 3AA672075F for ; Tue, 4 Aug 2020 13:47:42 +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="VPnXIYR7" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 3AA672075F 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+5093+4520428+8129116@lists.cip-project.org X-Received: by 127.0.0.2 with SMTP id wjYRYY4521763xB5mC9Gn5ib; Tue, 04 Aug 2020 06:47:41 -0700 X-Received: from mo-csw.securemx.jp (mo-csw.securemx.jp [210.130.202.156]) by mx.groups.io with SMTP id smtpd.web11.5604.1596548858868915504 for ; Tue, 04 Aug 2020 06:47:40 -0700 X-Received: by mo-csw.securemx.jp (mx-mo-csw1114) id 074Dlanc017681; Tue, 4 Aug 2020 22:47:36 +0900 X-Iguazu-Qid: 2wGqu78fiiC5scmPDM X-Iguazu-QSIG: v=2; s=0; t=1596548855; q=2wGqu78fiiC5scmPDM; m=qIBe2ZI8zqW8rIDaLY8VtaFxXtPaY8y/f7qmRXfQylU= X-Received: from imx12.toshiba.co.jp (imx12.toshiba.co.jp [61.202.160.132]) by relay.securemx.jp (mx-mr1111) id 074DlYGS039063; Tue, 4 Aug 2020 22:47:35 +0900 X-Received: from enc02.toshiba.co.jp ([61.202.160.51]) by imx12.toshiba.co.jp with ESMTP id 074DlYJo026579 for ; Tue, 4 Aug 2020 22:47:34 +0900 (JST) X-Received: from hop101.toshiba.co.jp ([133.199.85.107]) by enc02.toshiba.co.jp with ESMTP id 074DlYVf006600 for ; Tue, 4 Aug 2020 22:47:34 +0900 From: "Nobuhiro Iwamatsu" To: cip-dev@lists.cip-project.org Cc: Nobuhiro Iwamatsu Subject: [cip-dev] [PATCH 1/3] cip-core-image-test: Add recipe Date: Tue, 4 Aug 2020 22:47:26 +0900 X-TSB-HOP: ON Message-Id: <20200804134728.445732-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: F0ME7ERL9PpTD99riV2pzQesx4520428AA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=lists.cip-project.org; q=dns/txt; s=20140610; t=1596548861; bh=Y3nO+iB9iPdV0YKpke9MCXX5jdvAGR1o0ZVGoTwtVkM=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=VPnXIYR7hWtu1AKzdp/MrGk96Jn5eLsYBDmh/xXx8Ie/mVL9V/oQmZduBrGIYWdnb3f ++AkCHISO8zeANUzw+uGyjRhpHMEUSEKbuhoxb43aV9XX7quxkk6zoQsnpssz8mi8guzA eEFb+jgSmTn3vLeNytb66/BDpAnYpbZrijg= 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"