From patchwork Mon Jun 26 14:08:47 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Quentin Schulz X-Patchwork-Id: 26419 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 338CBC0015E for ; Mon, 26 Jun 2023 14:09:24 +0000 (UTC) Received: from relay2-d.mail.gandi.net (relay2-d.mail.gandi.net [217.70.183.194]) by mx.groups.io with SMTP id smtpd.web11.9127.1687788559699517317 for ; Mon, 26 Jun 2023 07:09:20 -0700 Authentication-Results: mx.groups.io; dkim=fail, err=malformed MIME header line: Subject: [PATCH] uboot-extlinux-config.bbclass: fix old override syntax in comment; spf=none, err=permanent DNS error (domain: 0leil.net, ip: 217.70.183.194, mailfrom: foss+yocto@0leil.net) Received: by mail.gandi.net (Postfix) with ESMTPSA id 5605740005; Mon, 26 Jun 2023 14:09:15 +0000 (UTC) From: Quentin Schulz To: openembedded-core@lists.openembedded.org Cc: Quentin Schulz , Quentin Schulz Subject: [PATCH] uboot-extlinux-config.bbclass: fix old override syntax in comment Date: Mon, 26 Jun 2023 16:08:47 +0200 Message-ID: <20230626-dev-uboot-extlinux-config-comment-new-syntax-v1-1-bd3319130902@theobroma-systems.com> X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 X-Mailer: b4 0.12.2 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 ; Mon, 26 Jun 2023 14:09:24 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-core/message/183421 From: Quentin Schulz The comment specifies how to use the variables but uses the older and now unsupported override syntax. Let's update to match the newer syntax. Cc: Quentin Schulz Signed-off-by: Quentin Schulz --- This was NOT tested, only looked weird and the code seems to indicate it can use the new syntax (which is not always guaranteed, see PREFERRED_PROVIDER). --- meta/classes-recipe/uboot-extlinux-config.bbclass | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- base-commit: 13b646c0e167ca52f69c91be5538049b172015ac change-id: 20230626-dev-uboot-extlinux-config-comment-new-syntax-82396af30935 Best regards, -- Quentin Schulz diff --git a/meta/classes-recipe/uboot-extlinux-config.bbclass b/meta/classes-recipe/uboot-extlinux-config.bbclass index 86a7d30ca0..653e583663 100644 --- a/meta/classes-recipe/uboot-extlinux-config.bbclass +++ b/meta/classes-recipe/uboot-extlinux-config.bbclass @@ -33,11 +33,11 @@ # UBOOT_EXTLINUX_DEFAULT_LABEL ??= "Linux Default" # UBOOT_EXTLINUX_TIMEOUT ??= "30" # -# UBOOT_EXTLINUX_KERNEL_IMAGE_default ??= "../zImage" -# UBOOT_EXTLINUX_MENU_DESCRIPTION_default ??= "Linux Default" +# UBOOT_EXTLINUX_KERNEL_IMAGE:default ??= "../zImage" +# UBOOT_EXTLINUX_MENU_DESCRIPTION:default ??= "Linux Default" # -# UBOOT_EXTLINUX_KERNEL_IMAGE_fallback ??= "../zImage-fallback" -# UBOOT_EXTLINUX_MENU_DESCRIPTION_fallback ??= "Linux Fallback" +# UBOOT_EXTLINUX_KERNEL_IMAGE:fallback ??= "../zImage-fallback" +# UBOOT_EXTLINUX_MENU_DESCRIPTION:fallback ??= "Linux Fallback" # # Results: #