From patchwork Tue Aug 4 13:53:41 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nobuhiro Iwamatsu X-Patchwork-Id: 11700427 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 46F2B722 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 2B234208A9 for ; Tue, 4 Aug 2020 13:53:55 +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="SPB56Bad" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 2B234208A9 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+5097+4520428+8129116@lists.cip-project.org X-Received: by 127.0.0.2 with SMTP id AnqnYY4521763x1mup3skXXG; 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.5722.1596549234151557575 for ; Tue, 04 Aug 2020 06:53:54 -0700 X-Received: by mo-csw.securemx.jp (mx-mo-csw1516) id 074DrqTl019184; Tue, 4 Aug 2020 22:53:52 +0900 X-Iguazu-Qid: 34tIYF04MXIpWbVnLE X-Iguazu-QSIG: v=2; s=0; t=1596549232; q=34tIYF04MXIpWbVnLE; m=Jb5sxxKpI3HbqC0EM8IbX3Es61Q20CNdkRc9QiQ5sME= X-Received: from imx2.toshiba.co.jp (imx2.toshiba.co.jp [106.186.93.51]) by relay.securemx.jp (mx-mr1513) id 074DrpkQ031820; Tue, 4 Aug 2020 22:53:51 +0900 X-Received: from enc01.localdomain ([106.186.93.100]) by imx2.toshiba.co.jp with ESMTP id 074DrpDl019137 for ; Tue, 4 Aug 2020 22:53:51 +0900 (JST) X-Received: from hop001.toshiba.co.jp ([133.199.164.63]) by enc01.localdomain with ESMTP id 074Drp9S020807 for ; Tue, 4 Aug 2020 22:53:51 +0900 From: "Nobuhiro Iwamatsu" To: cip-dev@lists.cip-project.org Cc: Nobuhiro Iwamatsu Subject: [cip-dev] [isar-cip-core][PATCH 2/3] customizations: Remove rt-tests and stress-ng from DEBIAN_DEPENDS Date: Tue, 4 Aug 2020 22:53:41 +0900 X-TSB-HOP: ON Message-Id: <20200804135342.446609-2-nobuhiro1.iwamatsu@toshiba.co.jp> In-Reply-To: <20200804135342.446609-1-nobuhiro1.iwamatsu@toshiba.co.jp> References: <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: pMSd5W1XHgifrHLKFAXTVvUXx4520428AA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=lists.cip-project.org; q=dns/txt; s=20140610; t=1596549234; bh=uXvOgwcfaF0TX/F9QmB2l8CSnSlU/7MaZi4WyCu3+4o=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=SPB56BadEH68fleT4oAc1Rr5lflVu0LcYGtb/6WnSVC+58oYeXBNrO0n6V9E5C2azTD OGsnMe2s+TO0LF4katfNTm3E45fl6g4qLgdUDhglhLc/Fg24L1n08FUNZDgR2Qg9pdphB pO4RA1toP9qycCYdRzJGboA9sEhxolmJW7w= Signed-off-by: Nobuhiro Iwamatsu --- recipes-core/customizations/customizations.bb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/recipes-core/customizations/customizations.bb b/recipes-core/customizations/customizations.bb index 38881fb..932b11c 100644 --- a/recipes-core/customizations/customizations.bb +++ b/recipes-core/customizations/customizations.bb @@ -11,7 +11,7 @@ inherit dpkg-raw -DESCRIPTION = "CIP Core image demo & test customizations" +DESCRIPTION = "CIP Core image demo & customizations" SRC_URI = " \ file://postinst \ @@ -21,8 +21,7 @@ SRC_URI = " \ DEPENDS += "sshd-regen-keys" DEBIAN_DEPENDS = " \ - ifupdown, isc-dhcp-client, net-tools, iputils-ping, ssh, sshd-regen-keys, \ - rt-tests, stress-ng" + ifupdown, isc-dhcp-client, net-tools, iputils-ping, ssh, sshd-regen-keys" do_install() { install -v -d ${D}/etc/network/interfaces.d From patchwork Tue Aug 4 13:53:42 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nobuhiro Iwamatsu X-Patchwork-Id: 11700431 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 EBF4D6C1 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 D7C09208A9 for ; Tue, 4 Aug 2020 13:53:55 +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="h3h72X1r" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org D7C09208A9 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+5098+4520428+8129116@lists.cip-project.org X-Received: by 127.0.0.2 with SMTP id lDizYY4521763xdC0wJFmAWE; Tue, 04 Aug 2020 06:53:55 -0700 X-Received: from mo-csw.securemx.jp (mo-csw.securemx.jp [210.130.202.153]) by mx.groups.io with SMTP id smtpd.web11.5723.1596549234753447863 for ; Tue, 04 Aug 2020 06:53:55 -0700 X-Received: by mo-csw.securemx.jp (mx-mo-csw1514) id 074DrqRs031921; Tue, 4 Aug 2020 22:53:53 +0900 X-Iguazu-Qid: 34tMXyHqtwZnVSxMvI X-Iguazu-QSIG: v=2; s=0; t=1596549232; q=34tMXyHqtwZnVSxMvI; m=mAYsaP77WB/oOl2+/uzzImHFzne0zpjtwCkru2g5tKU= X-Received: from imx2.toshiba.co.jp (imx2.toshiba.co.jp [106.186.93.51]) by relay.securemx.jp (mx-mr1512) id 074DrpGn028380; Tue, 4 Aug 2020 22:53:52 +0900 X-Received: from enc01.localdomain ([106.186.93.100]) by imx2.toshiba.co.jp with ESMTP id 074Drpne019140 for ; Tue, 4 Aug 2020 22:53:51 +0900 (JST) X-Received: from hop001.toshiba.co.jp ([133.199.164.63]) by enc01.localdomain with ESMTP id 074Drp0B020812 for ; Tue, 4 Aug 2020 22:53:51 +0900 From: "Nobuhiro Iwamatsu" To: cip-dev@lists.cip-project.org Cc: Nobuhiro Iwamatsu Subject: [cip-dev] [isar-cip-core][PATCH 3/3] testing: Add test.yml Date: Tue, 4 Aug 2020 22:53:42 +0900 X-TSB-HOP: ON Message-Id: <20200804135342.446609-3-nobuhiro1.iwamatsu@toshiba.co.jp> In-Reply-To: <20200804135342.446609-1-nobuhiro1.iwamatsu@toshiba.co.jp> References: <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: kDy5DUc1gMx076OAauO6Pj73x4520428AA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=lists.cip-project.org; q=dns/txt; s=20140610; t=1596549235; bh=Dn1A9hzvSkUyFueSYyq7YSGJeZZ2aaFke/uurWXqoAQ=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=h3h72X1r6oEQCeHEAzFwrnwqSTVoCENJfFnptI2N+vxnsG4Nl+J5DIcO863ZFq1mTzc 1kq+mlaMYp/zIsGKyCXy6kqvrk8A5ndc4IgtKeBKCgjRbswu9CQowLojXEXaAzsPsJjKT kkJ+Qj644IsyS8g3Vz4SAtMcS1bj/f3NE6Q= Add YAML to add the test application to cip-core-image, and create the cip-core-image-test image. Signed-off-by: Nobuhiro Iwamatsu --- kas/opt/test.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 kas/opt/test.yml diff --git a/kas/opt/test.yml b/kas/opt/test.yml new file mode 100644 index 0000000..c9eeb83 --- /dev/null +++ b/kas/opt/test.yml @@ -0,0 +1,15 @@ +# +# CIP Core, generic profile +# +# Copyright (c) Siemens AG, 2019 +# +# Authors: +# Jan Kiszka +# +# SPDX-License-Identifier: MIT +# + +header: + version: 8 + +target: cip-core-image-test