From patchwork Thu May 27 13:17:37 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gylstorff Quirin X-Patchwork-Id: 12284269 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.7 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 5EC6DC47089 for ; Thu, 27 May 2021 13:28:47 +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 F244E61059 for ; Thu, 27 May 2021 13:28:46 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org F244E61059 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+6478+4520388+8129055@lists.cip-project.org X-Received: by 127.0.0.2 with SMTP id rqxPYY4521723xhaSGgWzsUZ; Thu, 27 May 2021 06:28:46 -0700 X-Received: from gecko.sbs.de (gecko.sbs.de [194.138.37.40]) by mx.groups.io with SMTP id smtpd.web10.6961.1622122125676653093 for ; Thu, 27 May 2021 06:28:46 -0700 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 14RDSiQF031222 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Thu, 27 May 2021 15:28:44 +0200 X-Received: from md2dvrtc.fritz.box ([167.87.10.167]) by mail1.sbs.de (8.15.2/8.15.2) with ESMTP id 14RDHgaw007209; Thu, 27 May 2021 15:17:42 +0200 From: "Quirin Gylstorff" To: jan.kiszka@siemens.com, cip-dev@lists.cip-project.org Cc: Quirin Gylstorff Subject: [cip-dev][isar-cip-core][PATCH 1/5] swupdate-config: add dependency to u-boot-${MACHINE}-config Date: Thu, 27 May 2021 15:17:37 +0200 Message-Id: <20210527131741.8828-2-Quirin.Gylstorff@siemens.com> In-Reply-To: <20210527131741.8828-1-Quirin.Gylstorff@siemens.com> References: <20210527131741.8828-1-Quirin.Gylstorff@siemens.com> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: List-Subscribe: List-Help: 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: Opxfk98EBa9sGtAJH8GhdW1Kx4520388AA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=lists.cip-project.org; q=dns/txt; s=20140610; t=1622122126; bh=0vp2Kgsd08sppynekvZJXlFrjTXhYSsLNk1cVzlxn20=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=XdwonYucXty/JwvY6lyi5JThc9+xp/SAgz7FVytlslPimRENWjMfShcSt7I0OBLJbjB HQNWsExNljXqeM7Id2RqLxGsTTw/gUAeXX9t2hNMTByQ06+xdZ3zleHlHTusk3izq/5vJ 1id1DYBGK5xC3Xo2QpzHLiERwck82PPYpEI= From: Quirin Gylstorff If U_BOOT_CONFIG_PACKAGE is set, swupdate should depend on the u-boot-${MACHINE}-config. Signed-off-by: Quirin Gylstorff --- classes/swupdate-config.bbclass | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/classes/swupdate-config.bbclass b/classes/swupdate-config.bbclass index 4e46b37..f67ca4f 100644 --- a/classes/swupdate-config.bbclass +++ b/classes/swupdate-config.bbclass @@ -54,7 +54,9 @@ KFEATURE_u-boot[BUILD_DEB_DEPENDS] = "libubootenv-dev" KFEATURE_u-boot[DEBIAN_DEPENDS] = "${@ 'libubootenv0.1, u-boot-${MACHINE}-config' \ if d.getVar("U_BOOT_CONFIG_PACKAGE", True) == "1" \ else 'libubootenv0.1'}" -KFEATURE_u-boot[DEPENDS] = "libubootenv" +KFEATURE_u-boot[DEPENDS] = "${@ 'libubootenv u-boot-${MACHINE}-config' \ + if d.getVar("U_BOOT_CONFIG_PACKAGE", True) == "1" \ + else 'libubootenv'}" KFEATURE_u-boot[KCONFIG_SNIPPETS] = "file://swupdate_defconfig_u-boot.snippet" SWUPDATE_LUASCRIPT ?= "swupdate_handlers.lua" From patchwork Thu May 27 13:17:38 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gylstorff Quirin X-Patchwork-Id: 12284243 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.7 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 D4F62C4708A for ; Thu, 27 May 2021 13:25:03 +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 8211E613EB for ; Thu, 27 May 2021 13:25:03 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 8211E613EB 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+6475+4520388+8129055@lists.cip-project.org X-Received: by 127.0.0.2 with SMTP id SXqlYY4521723x0lsPwaWUcN; Thu, 27 May 2021 06:25:03 -0700 X-Received: from gecko.sbs.de (gecko.sbs.de [194.138.37.40]) by mx.groups.io with SMTP id smtpd.web12.6740.1622121902115508495 for ; Thu, 27 May 2021 06:25:02 -0700 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 14RDOwZl027002 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Thu, 27 May 2021 15:24:58 +0200 X-Received: from md2dvrtc.fritz.box ([167.87.10.167]) by mail1.sbs.de (8.15.2/8.15.2) with ESMTP id 14RDHgax007209; Thu, 27 May 2021 15:17:43 +0200 From: "Quirin Gylstorff" To: jan.kiszka@siemens.com, cip-dev@lists.cip-project.org Cc: Quirin Gylstorff Subject: [cip-dev][isar-cip-core][PATCH 2/5] kas/opt: Allow override of WKS_FILE in swupdate option Date: Thu, 27 May 2021 15:17:38 +0200 Message-Id: <20210527131741.8828-3-Quirin.Gylstorff@siemens.com> In-Reply-To: <20210527131741.8828-1-Quirin.Gylstorff@siemens.com> References: <20210527131741.8828-1-Quirin.Gylstorff@siemens.com> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: List-Subscribe: List-Help: 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: 6kJ2tSzuxgJHGJFN4OpRjqkax4520388AA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=lists.cip-project.org; q=dns/txt; s=20140610; t=1622121903; bh=aU2fQLsVZizy4VI1/RoRf/d6xXTNn6CR25ykeZFToKk=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=Y+3pgL8pyAUoKKGr+e59tyqFN4W5dNGZQU3mKDZ/oNnNrZ0EancD0gRJX8WohcwJgBU J+lh2ypcGR/VUE13LfWPRzLQI0IYUe/XviCBR5W5TVHWulG330zROQv6Z1JSWED/w9ZIW cEXXpJGEauqcmDhh/OAxl/xg+foE80UBOyo= From: Quirin Gylstorff This fixes an error if swupdate.yml is used together with the secureboot options. Signed-off-by: Quirin Gylstorff --- kas/opt/efibootguard.yml | 2 ++ kas/opt/swupdate.yml | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/kas/opt/efibootguard.yml b/kas/opt/efibootguard.yml index 544c740..d5a0e39 100644 --- a/kas/opt/efibootguard.yml +++ b/kas/opt/efibootguard.yml @@ -23,4 +23,6 @@ local_conf_header: efibootguard-wic: | WDOG_TIMEOUT = "0" WICVARS += "WDOG_TIMEOUT" + IMAGE_TYPE ?= "wic-img" + WKS_FILE ?= "${MACHINE}-${SWUPDATE_BOOTLOADER}.wks" diff --git a/kas/opt/swupdate.yml b/kas/opt/swupdate.yml index e622972..bd0f6e4 100644 --- a/kas/opt/swupdate.yml +++ b/kas/opt/swupdate.yml @@ -19,5 +19,5 @@ local_conf_header: IMAGE_INSTALL_append = " swupdate" wic-swu: | - IMAGE_TYPE ?= "wic-swu-img" - WKS_FILE = "${MACHINE}-${SWUPDATE_BOOTLOADER}.wks" + IMAGE_TYPE = "wic-swu-img" + WKS_FILE ?= "${MACHINE}-${SWUPDATE_BOOTLOADER}.wks" From patchwork Thu May 27 13:17:39 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gylstorff Quirin X-Patchwork-Id: 12284247 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.7 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 DB73DC4708A for ; Thu, 27 May 2021 13:25:06 +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 8B1E2613EB for ; Thu, 27 May 2021 13:25:06 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 8B1E2613EB 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+6476+4520388+8129055@lists.cip-project.org X-Received: by 127.0.0.2 with SMTP id 91ciYY4521723xglyG9yBxfU; Thu, 27 May 2021 06:25:06 -0700 X-Received: from gecko.sbs.de (gecko.sbs.de [194.138.37.40]) by mx.groups.io with SMTP id smtpd.web08.6787.1622121904602111136 for ; Thu, 27 May 2021 06:25:05 -0700 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 14RDP3Pv027137 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Thu, 27 May 2021 15:25:03 +0200 X-Received: from md2dvrtc.fritz.box ([167.87.10.167]) by mail1.sbs.de (8.15.2/8.15.2) with ESMTP id 14RDHgb0007209; Thu, 27 May 2021 15:17:43 +0200 From: "Quirin Gylstorff" To: jan.kiszka@siemens.com, cip-dev@lists.cip-project.org Cc: Quirin Gylstorff Subject: [cip-dev][isar-cip-core][PATCH 3/5] .gitlabci.yml: add secureboot build Date: Thu, 27 May 2021 15:17:39 +0200 Message-Id: <20210527131741.8828-4-Quirin.Gylstorff@siemens.com> In-Reply-To: <20210527131741.8828-1-Quirin.Gylstorff@siemens.com> References: <20210527131741.8828-1-Quirin.Gylstorff@siemens.com> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: List-Subscribe: List-Help: 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: 55DUtCxN7icTKU0LqPMX10xDx4520388AA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=lists.cip-project.org; q=dns/txt; s=20140610; t=1622121906; bh=b1/wwBa5AkID8V1p/oFP6kcPIqfsmiJp4jJxbU6A+W0=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=rLmsluOGc4D9Et8EOpc61tqSmk5vYbNPgIhfrfzz+1ec6FD+Tb0Dni2+Sb3iBK4rw3g 5nUrWQu6uWfSjLWSSpKc0I1wiJSAqr57lNRPE4ujFVluuYIeNmiatAkk5W6a1uHOL5JO3 EcIuylGzddt0c52uL7WxbWMGi5ktHYqFEJQ= From: Quirin Gylstorff Avoid build errors due to changes in the secure boot configuration. Signed-off-by: Quirin Gylstorff --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 84c1257..2bfed93 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -151,3 +151,15 @@ build:qemu-arm-test: extention: test wic_targz: disable targz: enable + +build:qemu-amd64-secure-boot: + extends: + - .build_base + variables: + target: qemu-amd64 + extention: ebg-secure-boot-snakeoil + use_rt: disable + wic_targz: disable + targz: disable + deploy: disable + From patchwork Thu May 27 13:17:40 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gylstorff Quirin X-Patchwork-Id: 12284223 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.7 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 ED347C4708A for ; Thu, 27 May 2021 13:17:49 +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 7E950611AE for ; Thu, 27 May 2021 13:17:49 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 7E950611AE 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+6474+4520388+8129055@lists.cip-project.org X-Received: by 127.0.0.2 with SMTP id UUKsYY4521723xfuLHDd402q; Thu, 27 May 2021 06:17:49 -0700 X-Received: from lizzard.sbs.de (lizzard.sbs.de [194.138.37.39]) by mx.groups.io with SMTP id smtpd.web08.6664.1622121468126996450 for ; Thu, 27 May 2021 06:17:48 -0700 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 14RDHicu014574 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Thu, 27 May 2021 15:17:44 +0200 X-Received: from md2dvrtc.fritz.box ([167.87.10.167]) by mail1.sbs.de (8.15.2/8.15.2) with ESMTP id 14RDHgb1007209; Thu, 27 May 2021 15:17:43 +0200 From: "Quirin Gylstorff" To: jan.kiszka@siemens.com, cip-dev@lists.cip-project.org Cc: Quirin Gylstorff Subject: [cip-dev][isar-cip-core][PATCH 4/5] .gitlabci.yml: add swupdate build Date: Thu, 27 May 2021 15:17:40 +0200 Message-Id: <20210527131741.8828-5-Quirin.Gylstorff@siemens.com> In-Reply-To: <20210527131741.8828-1-Quirin.Gylstorff@siemens.com> References: <20210527131741.8828-1-Quirin.Gylstorff@siemens.com> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: List-Subscribe: List-Help: 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: 2BCRHTyRUJ8tLLb0dLd2805px4520388AA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=lists.cip-project.org; q=dns/txt; s=20140610; t=1622121469; bh=hLPtyUAcr1XKhjoy0WAb7KSBtCltJ5MTUBeBC15472Q=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=U+mGYaVppk0sWP860bIUiGgHT/G52aQjMA3tyJg/zJCqN8ZntGgXcoHw423du5B6ve5 fCQuBn6uYAnq3opAdbKSIJfml7fusyFvMdznEObsM0CNS+vDU9Be7kG2u4NvjTIuHXBMT rkcI96hzFlfPn61+xob9aWBXKIy6BWgHJU8= From: Quirin Gylstorff Signed-off-by: Quirin Gylstorff --- .gitlab-ci.yml | 10 ++++++++++ kas/opt/ebg-swu.yml | 16 ++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 kas/opt/ebg-swu.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2bfed93..44ade3e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -163,3 +163,13 @@ build:qemu-amd64-secure-boot: targz: disable deploy: disable +build:qemu-amd64-swupdate: + extends: + - .build_base + variables: + target: qemu-amd64 + extention: ebg-swu + use_rt: disable + wic_targz: disable + targz: disable + deploy: disable diff --git a/kas/opt/ebg-swu.yml b/kas/opt/ebg-swu.yml new file mode 100644 index 0000000..8c56182 --- /dev/null +++ b/kas/opt/ebg-swu.yml @@ -0,0 +1,16 @@ +# +# CIP Core, generic profile +# +# Copyright (c) Siemens AG, 2021 +# +# Authors: +# Quirin Gylstorff +# +# SPDX-License-Identifier: MIT +# + +header: + version: 10 + includes: + - efibootguard.yml + - swupdate.yml From patchwork Thu May 27 13:17:41 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gylstorff Quirin X-Patchwork-Id: 12284245 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.7 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 DB28CC47089 for ; Thu, 27 May 2021 13:25:06 +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 8AD95613DE for ; Thu, 27 May 2021 13:25:06 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 8AD95613DE 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+6477+4520388+8129055@lists.cip-project.org X-Received: by 127.0.0.2 with SMTP id OjaAYY4521723xjEBRZbH0Uj; Thu, 27 May 2021 06:25:06 -0700 X-Received: from lizzard.sbs.de (lizzard.sbs.de [194.138.37.39]) by mx.groups.io with SMTP id smtpd.web08.6788.1622121904939104501 for ; Thu, 27 May 2021 06:25:05 -0700 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 14RDP3WG021282 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Thu, 27 May 2021 15:25:03 +0200 X-Received: from md2dvrtc.fritz.box ([167.87.10.167]) by mail1.sbs.de (8.15.2/8.15.2) with ESMTP id 14RDHgb2007209; Thu, 27 May 2021 15:17:44 +0200 From: "Quirin Gylstorff" To: jan.kiszka@siemens.com, cip-dev@lists.cip-project.org Cc: Quirin Gylstorff Subject: [cip-dev][isar-cip-core][PATCH 5/5] .gitlabci.yml: Add secure-boot and swupdate build Date: Thu, 27 May 2021 15:17:41 +0200 Message-Id: <20210527131741.8828-6-Quirin.Gylstorff@siemens.com> In-Reply-To: <20210527131741.8828-1-Quirin.Gylstorff@siemens.com> References: <20210527131741.8828-1-Quirin.Gylstorff@siemens.com> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: List-Subscribe: List-Help: 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: uUU2f0ouYDavseNC0C5LVsoXx4520388AA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=lists.cip-project.org; q=dns/txt; s=20140610; t=1622121906; bh=+STfhodPeNpwmlmAnaLycxfltvUMa7UFAzReGRjC5Iw=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=n693kkWsB6i+4kOQPk8O3/prOI9SjrQchmJwlEkfpLrUNY3NZUb0td04Nq9nOxa3yL2 iQm0WBHmRgxi7ZPvoJ3yJDQiFUhcGxlojXFu3Oc7GLeEATo36DfA3vf77EAbe4kpd6wKZ Omi3BGpzdG+e98r8oeVy2k0qsRpqcj04gTY= From: Quirin Gylstorff Signed-off-by: Quirin Gylstorff --- .gitlab-ci.yml | 11 +++++++++++ kas/opt/ebg-snakeoil-swu.yml | 17 +++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 kas/opt/ebg-snakeoil-swu.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 44ade3e..9d9ced0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -173,3 +173,14 @@ build:qemu-amd64-swupdate: wic_targz: disable targz: disable deploy: disable + +build:qemu-amd64-secure-boot-swu: + extends: + - .build_base + variables: + target: qemu-amd64 + extention: ebg-snakeoil-swu + use_rt: disable + wic_targz: disable + targz: disable + deploy: disable diff --git a/kas/opt/ebg-snakeoil-swu.yml b/kas/opt/ebg-snakeoil-swu.yml new file mode 100644 index 0000000..e4dd98f --- /dev/null +++ b/kas/opt/ebg-snakeoil-swu.yml @@ -0,0 +1,17 @@ +# +# CIP Core, generic profile +# +# Copyright (c) Siemens AG, 2021 +# +# Authors: +# Quirin Gylstorff +# +# SPDX-License-Identifier: MIT +# + +header: + version: 10 + includes: + - ebg-secure-boot-snakeoil.yml + - swupdate.yml +