From patchwork Wed Jan 21 13:31:52 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Quentin Schulz X-Patchwork-Id: 79334 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 28C8DC4453B for ; Wed, 21 Jan 2026 13:32:12 +0000 (UTC) Received: from smtp-bc0e.mail.infomaniak.ch (smtp-bc0e.mail.infomaniak.ch [45.157.188.14]) by mx.groups.io with SMTP id smtpd.msgproc02-g2.11754.1769002322474175270 for ; Wed, 21 Jan 2026 05:32:02 -0800 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: 0leil.net, ip: 45.157.188.14, mailfrom: foss+yocto@0leil.net) Received: from smtp-3-0000.mail.infomaniak.ch (smtp-3-0000.mail.infomaniak.ch [10.4.36.107]) by smtp-3-3000.mail.infomaniak.ch (Postfix) with ESMTPS id 4dx4qP0hvkz4FF; Wed, 21 Jan 2026 14:32:01 +0100 (CET) Received: from unknown by smtp-3-0000.mail.infomaniak.ch (Postfix) with ESMTPA id 4dx4qN4lJ5zwV2; Wed, 21 Jan 2026 14:32:00 +0100 (CET) From: Quentin Schulz Date: Wed, 21 Jan 2026 14:31:52 +0100 Subject: [PATCH v2 11/12] sdk-manual: using: fix SDK filename example MIME-Version: 1.0 Message-Id: <20260121-code-block-misc-20260114-v2-11-fdd4bb5c2e68@cherry.de> References: <20260121-code-block-misc-20260114-v2-0-fdd4bb5c2e68@cherry.de> In-Reply-To: <20260121-code-block-misc-20260114-v2-0-fdd4bb5c2e68@cherry.de> To: docs@lists.yoctoproject.org Cc: Quentin Schulz X-Mailer: b4 0.14.3 X-Infomaniak-Routing: alpha List-Id: X-Webhook-Received: from 45-33-107-173.ip.linodeusercontent.com [45.33.107.173] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Wed, 21 Jan 2026 13:32:12 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/docs/message/8623 From: Quentin Schulz I'm pretty sure we meant to use the DISTRO poky.yaml.in placeholder which can only be replaced when surrounding by & and ; characters. Therefore let's fix this oversight. Also, the example isn't actually pointing at the snapshot, but the actual release, so let's reword that as well so it matches the example. I decided to do that instead of adding +snapshot to the filename because the example in the next section is actually using that same filename so for consistency it seemed more appropriate. Signed-off-by: Quentin Schulz --- documentation/sdk-manual/using.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/sdk-manual/using.rst b/documentation/sdk-manual/using.rst index 792e159bf..a53010f02 100644 --- a/documentation/sdk-manual/using.rst +++ b/documentation/sdk-manual/using.rst @@ -70,11 +70,11 @@ Where: For example, the following SDK installer is for a 64-bit development host system and a i586-tuned target architecture based off -the SDK for ``core-image-sato`` and using the current DISTRO snapshot: +the SDK for ``core-image-sato`` and the ``&DISTRO;`` release: .. code-block:: text - poky-glibc-x86_64-core-image-sato-i586-toolchain-DISTRO.sh + poky-glibc-x86_64-core-image-sato-i586-toolchain-&DISTRO;.sh .. note::