From patchwork Wed Jan 20 08:34:40 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Quirin Gylstorff X-Patchwork-Id: 12031673 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-18.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7A5F1C4332D for ; Wed, 20 Jan 2021 08:34:52 +0000 (UTC) Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) (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 E790522202 for ; Wed, 20 Jan 2021 08:34:51 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org E790522202 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=siemens.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=bounce+64572+6115+4520388+8129055@lists.cip-project.org X-Received: by 127.0.0.2 with SMTP id eFZFYY4521723xgSM5N5uZet; Wed, 20 Jan 2021 00:34:51 -0800 X-Received: from goliath.siemens.de (goliath.siemens.de [192.35.17.28]) by mx.groups.io with SMTP id smtpd.web12.25409.1611131687134057941 for ; Wed, 20 Jan 2021 00:34:47 -0800 X-Received: from mail1.sbs.de (mail1.sbs.de [192.129.41.35]) by goliath.siemens.de (8.15.2/8.15.2) with ESMTPS id 10K8Yieu023900 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Wed, 20 Jan 2021 09:34:45 +0100 X-Received: from md2dvrtc.ad001.siemens.net ([139.22.114.182]) by mail1.sbs.de (8.15.2/8.15.2) with ESMTP id 10K8YhY6009837; Wed, 20 Jan 2021 09:34:44 +0100 From: "Quirin Gylstorff" To: cip-dev@lists.cip-project.org, jan.kiszka@siemens.com Cc: Quirin Gylstorff Subject: [cip-dev][isar-cip-core][PATCH v3 1/4] swupdate: enable cross-compile by setting PKG_CONFIG_PATH Date: Wed, 20 Jan 2021 09:34:40 +0100 Message-Id: <20210120083443.8105-2-Quirin.Gylstorff@siemens.com> In-Reply-To: <20210120083443.8105-1-Quirin.Gylstorff@siemens.com> References: <20210120083443.8105-1-Quirin.Gylstorff@siemens.com> 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 Reply-To: cip-dev@lists.cip-project.org X-Gm-Message-State: EwRvQ1Sy7lblxe6L7GOCBRZax4520388AA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=lists.cip-project.org; q=dns/txt; s=20140610; t=1611131691; bh=+s3F3nq9F40N9KScNrwsB69NVcRWMg+wNyqJmTF3y0c=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=oRnQ2we8N7ah6ROzYe33nHY50Vq04x9Z/q92TXCtJLhcs6EcSa8Ce5OPp/E3pd9RrTS fizcWzzhgKFSXATTLFJpTYpoTD3FcbcpQ5fitCmuzvdy0rORSWWH6KarJhHK7AyvBqIlX Gxo82cbrgQDAng/bv81CuujNPl68T4NveHw= From: Quirin Gylstorff If cross compiling should be used the configuration path for pkgconfig needs to be adapted for the target architecture. Add pkg-config as build dependency. Fix typo in swupdate.bb. Signed-off-by: Quirin Gylstorff --- classes/swupdate-config.bbclass | 2 +- recipes-core/swupdate/files/debian/rules.tmpl | 1 + recipes-core/swupdate/swupdate.bb | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/classes/swupdate-config.bbclass b/classes/swupdate-config.bbclass index 42f0654..208d240 100644 --- a/classes/swupdate-config.bbclass +++ b/classes/swupdate-config.bbclass @@ -15,7 +15,7 @@ inherit kconfig-snippets BUILD_DEB_DEPENDS = " \ zlib1g-dev, debhelper, libconfig-dev, libarchive-dev, \ - python-sphinx:native, dh-systemd, libsystemd-dev, libssl-dev" + python-sphinx:native, dh-systemd, libsystemd-dev, libssl-dev, pkg-config" KFEATURE_lua = "" KFEATURE_lua[BUILD_DEB_DEPENDS] = "liblua5.3-dev" diff --git a/recipes-core/swupdate/files/debian/rules.tmpl b/recipes-core/swupdate/files/debian/rules.tmpl index 54cca57..ec83a88 100755 --- a/recipes-core/swupdate/files/debian/rules.tmpl +++ b/recipes-core/swupdate/files/debian/rules.tmpl @@ -2,6 +2,7 @@ ifneq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE)) export CROSS_COMPILE=$(DEB_HOST_GNU_TYPE)- +export PKG_CONFIG_PATH=/usr/lib/$(DEB_HOST_GNU_TYPE)/pkgconfig export CC=$(DEB_HOST_GNU_TYPE)-gcc export LD=$(DEB_HOST_GNU_TYPE)-gcc endif diff --git a/recipes-core/swupdate/swupdate.bb b/recipes-core/swupdate/swupdate.bb index dd02cc2..b4d64fe 100644 --- a/recipes-core/swupdate/swupdate.bb +++ b/recipes-core/swupdate/swupdate.bb @@ -8,7 +8,7 @@ # # SPDX-License-Identifier: MIT -hDESCRIPTION = "swupdate utility for software updates" +DESCRIPTION = "swupdate utility for software updates" HOMEPAGE= "https://github.com/sbabic/swupdate" LICENSE = "GPL-2.0" LIC_FILES_CHKSUM = "file://${LAYERDIR_isar}/licenses/COPYING.GPLv2;md5=751419260aa954499f7abaabaa882bbe" From patchwork Wed Jan 20 08:34:41 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Quirin Gylstorff X-Patchwork-Id: 12031669 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-13.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 6F78EC43381 for ; Wed, 20 Jan 2021 08:34:52 +0000 (UTC) Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) (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 060AB2251D for ; Wed, 20 Jan 2021 08:34:50 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 060AB2251D Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=siemens.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=bounce+64572+6114+4520388+8129055@lists.cip-project.org X-Received: by 127.0.0.2 with SMTP id yH4uYY4521723xtaiOa7EnJU; Wed, 20 Jan 2021 00:34:50 -0800 X-Received: from lizzard.sbs.de (lizzard.sbs.de [194.138.37.39]) by mx.groups.io with SMTP id smtpd.web12.25408.1611131687014197741 for ; Wed, 20 Jan 2021 00:34:47 -0800 X-Received: from mail1.sbs.de (mail1.sbs.de [192.129.41.35]) by lizzard.sbs.de (8.15.2/8.15.2) with ESMTPS id 10K8YjYc004563 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Wed, 20 Jan 2021 09:34:45 +0100 X-Received: from md2dvrtc.ad001.siemens.net ([139.22.114.182]) by mail1.sbs.de (8.15.2/8.15.2) with ESMTP id 10K8YhY7009837; Wed, 20 Jan 2021 09:34:44 +0100 From: "Quirin Gylstorff" To: cip-dev@lists.cip-project.org, jan.kiszka@siemens.com Cc: Quirin Gylstorff Subject: [cip-dev][isar-cip-core][PATCH v3 2/4] swupdate: use libubootenv Date: Wed, 20 Jan 2021 09:34:41 +0100 Message-Id: <20210120083443.8105-3-Quirin.Gylstorff@siemens.com> In-Reply-To: <20210120083443.8105-1-Quirin.Gylstorff@siemens.com> References: <20210120083443.8105-1-Quirin.Gylstorff@siemens.com> 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 Reply-To: cip-dev@lists.cip-project.org X-Gm-Message-State: AqAKtkwvBHdYvS9vPXSeuGrmx4520388AA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=lists.cip-project.org; q=dns/txt; s=20140610; t=1611131690; bh=znfhCtwkFr4yPAvXoilZ5ZVSdP22SuUvuNh08bOg/ZE=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=lYCGluRg2NUVQdjQL4ocibQ37LwEju9M3JYVBTAlJf4jgnpWSRnTk7XBAYwXJFHfQN3 4SPHAjJsyMOrALDba5tvIxxbyDUL2lSBngn/9qY7MjP4/qt3xa47ISv8b0oJM2N3kwJHA SK+2TgVrLtZq3/IcNzdIcH1NMsOJUnngKv0= From: Quirin Gylstorff libubootenv provides hardware independent access to u-boot environments. This change conflicts with u-boot tools < 10.2019. Signed-off-by: Quirin Gylstorff --- classes/swupdate-config.bbclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/classes/swupdate-config.bbclass b/classes/swupdate-config.bbclass index 208d240..dd0317f 100644 --- a/classes/swupdate-config.bbclass +++ b/classes/swupdate-config.bbclass @@ -46,8 +46,8 @@ KFEATURE_ubi[KCONFIG_SNIPPETS] = "file://swupdate_defconfig_ubi.snippet" KFEATURE_DEPS[ubi] = "mtd" KFEATURE_u-boot = "" -KFEATURE_u-boot[BUILD_DEB_DEPENDS] = "u-boot-${MACHINE}-dev" -KFEATURE_u-boot[DEBIAN_DEPENDS] = "u-boot-tools" +KFEATURE_u-boot[BUILD_DEB_DEPENDS] = "libubootenv-dev" +KFEATURE_u-boot[DEBIAN_DEPENDS] = "libubootenv-tool, u-boot-tools" KFEATURE_u-boot[DEPENDS] = "${U_BOOT}" KFEATURE_u-boot[KCONFIG_SNIPPETS] = "file://swupdate_defconfig_u-boot.snippet" From patchwork Wed Jan 20 08:34:42 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Quirin Gylstorff X-Patchwork-Id: 12031671 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-13.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,TVD_SPACE_RATIO,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id ABE5BC433E9 for ; Wed, 20 Jan 2021 08:34:51 +0000 (UTC) Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) (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 07CD222573 for ; Wed, 20 Jan 2021 08:34:50 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 07CD222573 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=siemens.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=bounce+64572+6116+4520388+8129055@lists.cip-project.org X-Received: by 127.0.0.2 with SMTP id kcWfYY4521723xrWb7pJR0Zp; Wed, 20 Jan 2021 00:34:50 -0800 X-Received: from goliath.siemens.de (goliath.siemens.de [192.35.17.28]) by mx.groups.io with SMTP id smtpd.web12.25411.1611131687200841938 for ; Wed, 20 Jan 2021 00:34:47 -0800 X-Received: from mail1.sbs.de (mail1.sbs.de [192.129.41.35]) by goliath.siemens.de (8.15.2/8.15.2) with ESMTPS id 10K8YjuJ023921 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Wed, 20 Jan 2021 09:34:45 +0100 X-Received: from md2dvrtc.ad001.siemens.net ([139.22.114.182]) by mail1.sbs.de (8.15.2/8.15.2) with ESMTP id 10K8YhY8009837; Wed, 20 Jan 2021 09:34:45 +0100 From: "Quirin Gylstorff" To: cip-dev@lists.cip-project.org, jan.kiszka@siemens.com Cc: Quirin Gylstorff Subject: [cip-dev][isar-cip-core][PATCH v3 3/4] update linux kernels Date: Wed, 20 Jan 2021 09:34:42 +0100 Message-Id: <20210120083443.8105-4-Quirin.Gylstorff@siemens.com> In-Reply-To: <20210120083443.8105-1-Quirin.Gylstorff@siemens.com> References: <20210120083443.8105-1-Quirin.Gylstorff@siemens.com> 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 Reply-To: cip-dev@lists.cip-project.org X-Gm-Message-State: uGCuQAza5x3LGss0LIYXpyKcx4520388AA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=lists.cip-project.org; q=dns/txt; s=20140610; t=1611131690; bh=eIfYDx6pmxVT4vuoRvMBvQu3h5op2NyvD6Ons+bhwqE=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=vt8wz2Id4F4qfAZZCLVsOw0rfknRJoU+O41v5Ppoie9F85ZdZeLCXchI7dWpy+/QbQl e7fupoerj6E4uMUEjSyCzEgM/rfJWY+iTsO2/bnAUBEyK7czG+LCIgvrUnnFDK+Jr82RV LasbUEfJ3RLSTtJttY+fKPgByyIA79P3oCg= From: Quirin Gylstorff Signed-off-by: Quirin Gylstorff --- ....135-cip31-rt13.bb => linux-cip-rt_4.19.160-cip39-rt17.bb} | 4 ++-- ...4.231-cip47-rt30.bb => linux-cip-rt_4.4.244-cip51-rt32.bb} | 4 ++-- ...inux-cip_4.19.140-cip33.bb => linux-cip_4.19.165-cip41.bb} | 4 ++-- ...{linux-cip_4.4.230-cip47.bb => linux-cip_4.4.249-cip53.bb} | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) rename recipes-kernel/linux/{linux-cip-rt_4.19.135-cip31-rt13.bb => linux-cip-rt_4.19.160-cip39-rt17.bb} (54%) rename recipes-kernel/linux/{linux-cip-rt_4.4.231-cip47-rt30.bb => linux-cip-rt_4.4.244-cip51-rt32.bb} (54%) rename recipes-kernel/linux/{linux-cip_4.19.140-cip33.bb => linux-cip_4.19.165-cip41.bb} (53%) rename recipes-kernel/linux/{linux-cip_4.4.230-cip47.bb => linux-cip_4.4.249-cip53.bb} (53%) diff --git a/recipes-kernel/linux/linux-cip-rt_4.19.135-cip31-rt13.bb b/recipes-kernel/linux/linux-cip-rt_4.19.160-cip39-rt17.bb similarity index 54% rename from recipes-kernel/linux/linux-cip-rt_4.19.135-cip31-rt13.bb rename to recipes-kernel/linux/linux-cip-rt_4.19.160-cip39-rt17.bb index 820c1ab..3c0aea5 100644 --- a/recipes-kernel/linux/linux-cip-rt_4.19.135-cip31-rt13.bb +++ b/recipes-kernel/linux/linux-cip-rt_4.19.160-cip39-rt17.bb @@ -1,7 +1,7 @@ # # CIP Core, generic profile # -# Copyright (c) Siemens AG, 2019 +# Copyright (c) Siemens AG, 2019 - 2021 # # Authors: # Jan Kiszka @@ -11,4 +11,4 @@ require linux-cip-rt-common.inc -SRC_URI[sha256sum] = "b827f45b8f97b71b3917c84b43fd6593030d01ea7261d3be6c15a76250308743" +SRC_URI[sha256sum] = "c2e0f50670c298aed94c35628caf4ddf0eefc20d2f17e0a5f024bf4d99a38460" diff --git a/recipes-kernel/linux/linux-cip-rt_4.4.231-cip47-rt30.bb b/recipes-kernel/linux/linux-cip-rt_4.4.244-cip51-rt32.bb similarity index 54% rename from recipes-kernel/linux/linux-cip-rt_4.4.231-cip47-rt30.bb rename to recipes-kernel/linux/linux-cip-rt_4.4.244-cip51-rt32.bb index e13fc14..6679144 100644 --- a/recipes-kernel/linux/linux-cip-rt_4.4.231-cip47-rt30.bb +++ b/recipes-kernel/linux/linux-cip-rt_4.4.244-cip51-rt32.bb @@ -1,7 +1,7 @@ # # CIP Core, generic profile # -# Copyright (c) Siemens AG, 2019 +# Copyright (c) Siemens AG, 2019 - 2021 # # Authors: # Jan Kiszka @@ -11,4 +11,4 @@ require linux-cip-rt-common.inc -SRC_URI[sha256sum] = "e7a0c7b8e4d91f52cbc2ee17a546d1afbc5fcfed95ba44dd113e534fab3a157e" +SRC_URI[sha256sum] = "070dc2084d2a64c1c8d64382978ec01ed7875b012401d09f37428a9c8c52b9c3" diff --git a/recipes-kernel/linux/linux-cip_4.19.140-cip33.bb b/recipes-kernel/linux/linux-cip_4.19.165-cip41.bb similarity index 53% rename from recipes-kernel/linux/linux-cip_4.19.140-cip33.bb rename to recipes-kernel/linux/linux-cip_4.19.165-cip41.bb index 9e958c0..f19b4c3 100644 --- a/recipes-kernel/linux/linux-cip_4.19.140-cip33.bb +++ b/recipes-kernel/linux/linux-cip_4.19.165-cip41.bb @@ -1,7 +1,7 @@ # # CIP Core, generic profile # -# Copyright (c) Siemens AG, 2019 +# Copyright (c) Siemens AG, 2019 - 2021 # # Authors: # Jan Kiszka @@ -11,4 +11,4 @@ require linux-cip-common.inc -SRC_URI[sha256sum] = "f6a9aec6848a5897c90bafda5a9eba010c03d5d0cf99508adfb1cf7a2f4af9e5" +SRC_URI[sha256sum] = "c1404d0a0a1ba71656c237d6d606714d34364814dc9a3998add93fe1749cb27d" diff --git a/recipes-kernel/linux/linux-cip_4.4.230-cip47.bb b/recipes-kernel/linux/linux-cip_4.4.249-cip53.bb similarity index 53% rename from recipes-kernel/linux/linux-cip_4.4.230-cip47.bb rename to recipes-kernel/linux/linux-cip_4.4.249-cip53.bb index af49441..03b1a04 100644 --- a/recipes-kernel/linux/linux-cip_4.4.230-cip47.bb +++ b/recipes-kernel/linux/linux-cip_4.4.249-cip53.bb @@ -1,7 +1,7 @@ # # CIP Core, generic profile # -# Copyright (c) Siemens AG, 2019 +# Copyright (c) Siemens AG, 2019 - 2021 # # Authors: # Jan Kiszka @@ -11,4 +11,4 @@ require linux-cip-common.inc -SRC_URI[sha256sum] = "3ff33e497064ba8e7d9b5e1ee575c6a936154fa8216774782cbc0db2e4b71cdf" +SRC_URI[sha256sum] = "f8a6eba35572da13c81fec6c2d451db8f75b0ab4a5b6b80113523fbb035bf384" From patchwork Wed Jan 20 08:34:43 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Quirin Gylstorff X-Patchwork-Id: 12031667 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-18.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id CC451C433DB for ; Wed, 20 Jan 2021 08:34:50 +0000 (UTC) Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) (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 278BF2251D for ; Wed, 20 Jan 2021 08:34:49 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 278BF2251D Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=siemens.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=bounce+64572+6117+4520388+8129055@lists.cip-project.org X-Received: by 127.0.0.2 with SMTP id RfflYY4521723xZ6RDBbhwYw; Wed, 20 Jan 2021 00:34:48 -0800 X-Received: from gecko.sbs.de (gecko.sbs.de [194.138.37.40]) by mx.groups.io with SMTP id smtpd.web12.25410.1611131687197537757 for ; Wed, 20 Jan 2021 00:34:47 -0800 X-Received: from mail1.sbs.de (mail1.sbs.de [192.129.41.35]) by gecko.sbs.de (8.15.2/8.15.2) with ESMTPS id 10K8Yjjh021831 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Wed, 20 Jan 2021 09:34:45 +0100 X-Received: from md2dvrtc.ad001.siemens.net ([139.22.114.182]) by mail1.sbs.de (8.15.2/8.15.2) with ESMTP id 10K8YhY9009837; Wed, 20 Jan 2021 09:34:45 +0100 From: "Quirin Gylstorff" To: cip-dev@lists.cip-project.org, jan.kiszka@siemens.com Cc: Quirin Gylstorff Subject: [cip-dev][isar-cip-core][PATCH v3 4/4] kas: update ISAR Date: Wed, 20 Jan 2021 09:34:43 +0100 Message-Id: <20210120083443.8105-5-Quirin.Gylstorff@siemens.com> In-Reply-To: <20210120083443.8105-1-Quirin.Gylstorff@siemens.com> References: <20210120083443.8105-1-Quirin.Gylstorff@siemens.com> 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 Reply-To: cip-dev@lists.cip-project.org X-Gm-Message-State: 2Sh8Fmw6wqebyIBbccOUfUOxx4520388AA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=lists.cip-project.org; q=dns/txt; s=20140610; t=1611131688; bh=vQUjV5owl4OWOAfpEnIjIYno9gCXuBTWM6M9xU4h7Gg=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=gjxC62FSr9EcDUp/qHx+bwCoKMu+ISY1ICGa9UejddZqNiJMacdDbHkpYDZAnDBZfHP /N+c/FZgY5IKjSrbuDKXDsVnubZ++iEha+/fVP64x98NkHYCmMKu1AYiGOK5acVEtDkzO GjKrbi4jeYCej9ehIyQKKqmOq2teCCxxHPw= From: Quirin Gylstorff Signed-off-by: Quirin Gylstorff --- kas-cip.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kas-cip.yml b/kas-cip.yml index f50cd6c..9514083 100644 --- a/kas-cip.yml +++ b/kas-cip.yml @@ -22,7 +22,7 @@ repos: isar: url: https://github.com/ilbers/isar.git - refspec: 76eac233f1b1d0d117b3f05b3dec8a6da1cdf4c7 + refspec: cd1327a47a7b00df98eded582aaf5b1ebdd45628 layers: meta: patches: