From patchwork Fri Apr 18 13:10:00 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jon Mason X-Patchwork-Id: 61557 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5D412C369AB for ; Fri, 18 Apr 2025 13:10:07 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web10.11233.1744981804487296524 for ; Fri, 18 Apr 2025 06:10:04 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: jon.mason@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id CAED414BF for ; Fri, 18 Apr 2025 06:10:00 -0700 (PDT) Received: from H24V3P4C17.arm.com (usa-sjc-imap-foss1.foss.arm.com [10.121.207.14]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 9C7593F66E for ; Fri, 18 Apr 2025 06:10:03 -0700 (PDT) From: Jon Mason To: meta-arm@lists.yoctoproject.org Subject: [PATCH 1/3] arm-bsp/external-system: correct whitespace warning Date: Fri, 18 Apr 2025 09:10:00 -0400 Message-Id: <20250418131002.95131-1-jon.mason@arm.com> X-Mailer: git-send-email 2.39.5 (Apple Git-154) MIME-Version: 1.0 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Fri, 18 Apr 2025 13:10:07 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arm/message/6469 Seeing the following warning: WARNING: /builds/jonmason00/meta-arm/work/build/../../meta-arm-bsp/recipes-bsp/external-system/external-system_0.1.0.bb: /builds/jonmason00/meta-arm/work/build/../../meta-arm-bsp/recipes-bsp/external-system/external-system_0.1.0.bb:6 has a lack of whitespace around the assignment: 'INHIBIT_DEFAULT_DEPS="1"' Adding spaces addresses the issue. Signed-off-by: Jon Mason --- .../recipes-bsp/external-system/external-system_0.1.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-arm-bsp/recipes-bsp/external-system/external-system_0.1.0.bb b/meta-arm-bsp/recipes-bsp/external-system/external-system_0.1.0.bb index 8bd116163851..1f2d02dfcf8d 100644 --- a/meta-arm-bsp/recipes-bsp/external-system/external-system_0.1.0.bb +++ b/meta-arm-bsp/recipes-bsp/external-system/external-system_0.1.0.bb @@ -3,7 +3,7 @@ DESCRIPTION = "Firmware to be loaded and run in External System Harness in\ support to the main application CPU." HOMEPAGE = "https://git.linaro.org/landing-teams/working/arm/external-system.git" DEPENDS = "gcc-arm-none-eabi-native" -INHIBIT_DEFAULT_DEPS="1" +INHIBIT_DEFAULT_DEPS = "1" LICENSE = "BSD-3-Clause & Apache-2.0" LIC_FILES_CHKSUM = "file://license.md;md5=e44b2531cd6ffe9dece394dbe988d9a0 \ file://cmsis/LICENSE.txt;md5=e3fc50a88d0a364313df4b21ef20c29e" From patchwork Fri Apr 18 13:10:01 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jon Mason X-Patchwork-Id: 61555 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 60DABC369D0 for ; Fri, 18 Apr 2025 13:10:07 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web10.11232.1744981804446834972 for ; Fri, 18 Apr 2025 06:10:04 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: jon.mason@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 0F7D1150C for ; Fri, 18 Apr 2025 06:10:01 -0700 (PDT) Received: from H24V3P4C17.arm.com (usa-sjc-imap-foss1.foss.arm.com [10.121.207.14]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id CC1593F66E for ; Fri, 18 Apr 2025 06:10:03 -0700 (PDT) From: Jon Mason To: meta-arm@lists.yoctoproject.org Subject: [PATCH 2/3] arm/tclibc: add spaces after TCLIBC Date: Fri, 18 Apr 2025 09:10:01 -0400 Message-Id: <20250418131002.95131-2-jon.mason@arm.com> X-Mailer: git-send-email 2.39.5 (Apple Git-154) In-Reply-To: <20250418131002.95131-1-jon.mason@arm.com> References: <20250418131002.95131-1-jon.mason@arm.com> MIME-Version: 1.0 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Fri, 18 Apr 2025 13:10:07 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arm/message/6468 Seeing the warning: lack of whitespace around the assignment: 'TCLIBC="musl"' Add spaces to address the issue Signed-off-by: Jon Mason --- kas/corstone1000-firmware-only.yml | 2 +- meta-arm/conf/multiconfig/firmware.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kas/corstone1000-firmware-only.yml b/kas/corstone1000-firmware-only.yml index 6192a4087234..bc47940b316b 100644 --- a/kas/corstone1000-firmware-only.yml +++ b/kas/corstone1000-firmware-only.yml @@ -10,7 +10,7 @@ local_conf_header: OVERRIDES .= ":firmware" # Need to ensure we build with a small libc - TCLIBC="musl" + TCLIBC = "musl" mass-storage: | # Ensure the Mass Storage device is absent diff --git a/meta-arm/conf/multiconfig/firmware.conf b/meta-arm/conf/multiconfig/firmware.conf index 95de4d246792..018c0deb81e5 100644 --- a/meta-arm/conf/multiconfig/firmware.conf +++ b/meta-arm/conf/multiconfig/firmware.conf @@ -4,7 +4,7 @@ DISTROOVERRIDES = "firmware" TMPDIR:append = "_${MACHINE}" -TCLIBC="musl" +TCLIBC = "musl" # Ignore the testimage flags to include ssh-server-dropbear IMAGE_CLASSES:remove = "testimage" From patchwork Fri Apr 18 13:10:02 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jon Mason X-Patchwork-Id: 61556 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5760DC369CA for ; Fri, 18 Apr 2025 13:10:07 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web11.11501.1744981804452293435 for ; Fri, 18 Apr 2025 06:10:04 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: jon.mason@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 43EDC1AC1 for ; Fri, 18 Apr 2025 06:10:01 -0700 (PDT) Received: from H24V3P4C17.arm.com (usa-sjc-imap-foss1.foss.arm.com [10.121.207.14]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 0DB693F66E for ; Fri, 18 Apr 2025 06:10:04 -0700 (PDT) From: Jon Mason To: meta-arm@lists.yoctoproject.org Subject: [PATCH 3/3] CI: add spaces to TS_ENV Date: Fri, 18 Apr 2025 09:10:02 -0400 Message-Id: <20250418131002.95131-3-jon.mason@arm.com> X-Mailer: git-send-email 2.39.5 (Apple Git-154) In-Reply-To: <20250418131002.95131-1-jon.mason@arm.com> References: <20250418131002.95131-1-jon.mason@arm.com> MIME-Version: 1.0 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Fri, 18 Apr 2025 13:10:07 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/meta-arm/message/6467 Seeing the warning: lack of whitespace around the assignment: 'TS_ENV="sp"' Add the spaces to address the issue Signed-off-by: Jon Mason --- ci/fvp-base-ts.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/fvp-base-ts.yml b/ci/fvp-base-ts.yml index ae74334edfe3..9f13bac7f045 100644 --- a/ci/fvp-base-ts.yml +++ b/ci/fvp-base-ts.yml @@ -21,7 +21,7 @@ local_conf_header: IMAGE_INSTALL:append = " packagegroup-ts-tests-psa" CORE_IMAGE_EXTRA_INSTALL += "optee-test" # Set the TS environment - TS_ENV="sp" + TS_ENV = "sp" # Enable and configure semihosting FVP_CONFIG[cluster0.cpu0.semihosting-cwd] = "${DEPLOY_DIR_IMAGE}" FVP_CONFIG[cluster0.cpu1.semihosting-cwd] = "${DEPLOY_DIR_IMAGE}"