From patchwork Wed Jul 15 11:02:34 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ross Burton X-Patchwork-Id: 92516 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 C48CDC44501 for ; Wed, 15 Jul 2026 11:02:52 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.msgproc02-g2.3736.1784113365206999285 for ; Wed, 15 Jul 2026 04:02:45 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="dkim: body hash did not verify" header.i=@arm.com header.s=foss header.b=hzAD/c+y; spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: ross.burton@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 3A1E31477 for ; Wed, 15 Jul 2026 04:02:40 -0700 (PDT) Received: from cesw-amp-gbt-1s-m12830-04.lab.cambridge.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 302FF3F7B4 for ; Wed, 15 Jul 2026 04:02:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=arm.com; s=foss; t=1784113364; bh=WnY5NkA1omx482xZFMF31erRB/ZMJ1um/l9MUB3ryJM=; h=From:To:Subject:Date:From; b=hzAD/c+ykaS/tQwb5bRRgOdtjf2fH5wGT6CSE4kf+3n+C6XYsa7d7DPw3PYnj8+mt 7wXB8qE/2hkJcHpRbcK3LQrj8QAYIFCPbiQpst/PsAEXRDEhtcUJmoDdHVGX9EDIjA yIqF18WjzyPJrTA0eKxP0PHl6xE1Z8q+fIoaw9nA= From: Ross Burton To: openembedded-core@lists.openembedded.org Subject: [PATCH 1/4] base-files: remove LSB-specific overrides Date: Wed, 15 Jul 2026 12:02:34 +0100 Message-ID: <20260715110237.1692760-1-ross.burton@arm.com> X-Mailer: git-send-email 2.43.0 MIME-Version: 1.0 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, 15 Jul 2026 11:02:52 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-core/message/240944 The linuxstdbase override was used by the poky-lsb distribution, which aimed to be compatible with the Linux Standard Base specification. LSB is long-dead and poky-lsb was removed back in 2018 with the thud release[1]. Clarify the recipe by deleting these obsolete and unused assignments. [1] meta-yocto 00fdefff55 ("poky-altcfg: Replace poky-lsb with poky-altcfg") Signed-off-by: Ross Burton --- .../base-files/base-files_3.0.14.bb | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/meta/recipes-core/base-files/base-files_3.0.14.bb b/meta/recipes-core/base-files/base-files_3.0.14.bb index 99ac19eb58f..0cd6600782f 100644 --- a/meta/recipes-core/base-files/base-files_3.0.14.bb +++ b/meta/recipes-core/base-files/base-files_3.0.14.bb @@ -47,13 +47,6 @@ dirs755 = "/boot /dev ${base_bindir} ${base_sbindir} ${base_libdir} \ /home ${prefix}/src ${localstatedir}/local \ /media" -dirs755-lsb = "${servicedir} \ - ${prefix}/local ${prefix}/local/bin ${prefix}/local/games \ - ${prefix}/local/include ${prefix}/local/lib ${prefix}/local/sbin \ - ${prefix}/local/share ${prefix}/local/src \ - ${prefix}/lib/locale" -dirs2775-lsb = "${localstatedir}/mail" - volatiles = "${@bb.utils.contains('FILESYSTEM_PERMS_TABLES', 'files/fs-perms-volatile-log.txt', 'log', '', d)} \ ${@bb.utils.contains('FILESYSTEM_PERMS_TABLES', 'files/fs-perms-volatile-tmp.txt', 'tmp', '', d)}" conffiles = "${sysconfdir}/debian_version ${sysconfdir}/host.conf \ @@ -145,16 +138,6 @@ do_install_basefilesissue () { } do_install_basefilesissue[vardepsexclude] += "DATE" -do_install:append:linuxstdbase() { - for d in ${dirs755-lsb}; do - install -m 0755 -d ${D}$d - done - - for d in ${dirs2775-lsb}; do - install -m 2775 -d ${D}$d - done -} - SYSROOT_DIRS += "${sysconfdir}/skel" PACKAGES = "${PN}-doc ${PN} ${PN}-dev ${PN}-dbg" From patchwork Wed Jul 15 11:02:35 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ross Burton X-Patchwork-Id: 92518 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 E36AAC4450C for ; Wed, 15 Jul 2026 11:02:52 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.msgproc01-g2.3707.1784113365625979047 for ; Wed, 15 Jul 2026 04:02:45 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="dkim: body hash did not verify" header.i=@arm.com header.s=foss header.b=cc5eOeyS; spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: ross.burton@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 CA8DC152B for ; Wed, 15 Jul 2026 04:02:40 -0700 (PDT) Received: from cesw-amp-gbt-1s-m12830-04.lab.cambridge.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 BB8883F7B4 for ; Wed, 15 Jul 2026 04:02:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=arm.com; s=foss; t=1784113365; bh=2W152Buvk3y9ciiRxAH2ZBryiyq7vZ9vTbCXPOy2QtQ=; h=From:To:Subject:Date:In-Reply-To:References:From; b=cc5eOeySqSxv13em9uzFySEk0589aqDavx93Pax79IXuXj+5leVbyUXWInOzd9F/7 fJCVZDtQIWvtMRukmjFWwTrwP1gpfO18mIshgO4EKpEeiW7z8FpN76U/SHoC69dfDn WwZXiFM4EmkzojhuEF+KwG2eaDkLpjjkeGDGgi1s= From: Ross Burton To: openembedded-core@lists.openembedded.org Subject: [PATCH 2/4] libxml2: remove LSB-specific overrides Date: Wed, 15 Jul 2026 12:02:35 +0100 Message-ID: <20260715110237.1692760-2-ross.burton@arm.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20260715110237.1692760-1-ross.burton@arm.com> References: <20260715110237.1692760-1-ross.burton@arm.com> MIME-Version: 1.0 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, 15 Jul 2026 11:02:52 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-core/message/240945 The linuxstdbase override was used by the poky-lsb distribution, which aimed to be compatible with the Linux Standard Base specification. LSB is long-dead and poky-lsb was removed back in 2018 with the thud release[1]. Clarify the recipe by deleting these obsolete and unused assignments. [1] meta-yocto 00fdefff55 ("poky-altcfg: Replace poky-lsb with poky-altcfg") Signed-off-by: Ross Burton --- meta/recipes-core/libxml/libxml2_2.15.3.bb | 1 - 1 file changed, 1 deletion(-) diff --git a/meta/recipes-core/libxml/libxml2_2.15.3.bb b/meta/recipes-core/libxml/libxml2_2.15.3.bb index abf9889b3f3..096a719d1c4 100644 --- a/meta/recipes-core/libxml/libxml2_2.15.3.bb +++ b/meta/recipes-core/libxml/libxml2_2.15.3.bb @@ -45,7 +45,6 @@ RDEPENDS:${PN}-ptest:append:libc-glibc = " glibc-gconv-ebcdic-us \ EXTRA_OECONF = "--without-debug --without-legacy --with-catalog --with-c14n" EXTRA_OECONF:class-native = "--without-legacy --with-c14n --with-zlib" EXTRA_OECONF:class-nativesdk = "--without-legacy --with-c14n --with-zlib" -EXTRA_OECONF:linuxstdbase = "--with-debug --with-legacy --with-c14n --with-zlib" python populate_packages:prepend () { # autonamer would call this libxml2-2, but we don't want that From patchwork Wed Jul 15 11:02:36 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ross Burton X-Patchwork-Id: 92515 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 E2973C44508 for ; Wed, 15 Jul 2026 11:02:52 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.msgproc02-g2.3737.1784113366086706114 for ; Wed, 15 Jul 2026 04:02:46 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="dkim: body hash did not verify" header.i=@arm.com header.s=foss header.b=sbgffNjs; spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: ross.burton@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 645031477 for ; Wed, 15 Jul 2026 04:02:41 -0700 (PDT) Received: from cesw-amp-gbt-1s-m12830-04.lab.cambridge.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 5BED63F7B4 for ; Wed, 15 Jul 2026 04:02:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=arm.com; s=foss; t=1784113365; bh=UOlih+eDvV70kGBA5xgVRs3NKCXzmCaFi99eINc/kqo=; h=From:To:Subject:Date:In-Reply-To:References:From; b=sbgffNjs7vM0hoK2m0SPkakeNvOIMwGOLB7+Eyf0Nkbndj0uKT3jDarCVzR89aCan V69Uv1DAC1G/JCePcfiwBovg87x8ELJB6jyYOaFZOu7wQx16XedhtLzD0DwZ02nSrU AtpFi3SklxBtNcY09BzopFu9cvkFeTnIyz3ZFhbc= From: Ross Burton To: openembedded-core@lists.openembedded.org Subject: [PATCH 3/4] gcc: remove LSB-specific overrides Date: Wed, 15 Jul 2026 12:02:36 +0100 Message-ID: <20260715110237.1692760-3-ross.burton@arm.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20260715110237.1692760-1-ross.burton@arm.com> References: <20260715110237.1692760-1-ross.burton@arm.com> MIME-Version: 1.0 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, 15 Jul 2026 11:02:52 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-core/message/240946 The linuxstdbase override was used by the poky-lsb distribution, which aimed to be compatible with the Linux Standard Base specification. LSB is long-dead and poky-lsb was removed back in 2018 with the thud release[1]. Clarify the recipe by deleting these obsolete and unused assignments. [1] meta-yocto 00fdefff55 ("poky-altcfg: Replace poky-lsb with poky-altcfg") Signed-off-by: Ross Burton --- meta/recipes-devtools/gcc/gcc-runtime.inc | 1 - meta/recipes-devtools/gcc/gcc-target.inc | 2 -- 2 files changed, 3 deletions(-) diff --git a/meta/recipes-devtools/gcc/gcc-runtime.inc b/meta/recipes-devtools/gcc/gcc-runtime.inc index e305180c64f..d58cbe9c1a7 100644 --- a/meta/recipes-devtools/gcc/gcc-runtime.inc +++ b/meta/recipes-devtools/gcc/gcc-runtime.inc @@ -18,7 +18,6 @@ EXTRA_OECONF_PATHS = "\ TARGET_CC_ARCH += "-fno-link-libatomic" SDK_CC_ARCH += "-fno-link-libatomic" -EXTRA_OECONF:append:linuxstdbase = " --enable-clocale=gnu" EXTRA_OECONF:append = " --cache-file=${B}/config.cache" EXTRA_OECONF:append:libc-newlib = " --with-newlib --with-target-subdir" EXTRA_OECONF:append:libc-picolibc = " --with-newlib --with-target-subdir" diff --git a/meta/recipes-devtools/gcc/gcc-target.inc b/meta/recipes-devtools/gcc/gcc-target.inc index 6b47c10413a..40e026f59e6 100644 --- a/meta/recipes-devtools/gcc/gcc-target.inc +++ b/meta/recipes-devtools/gcc/gcc-target.inc @@ -6,8 +6,6 @@ EXTRA_OECONF_PATHS = "\ --with-build-sysroot=${STAGING_DIR_TARGET} \ " -EXTRA_OECONF:append:linuxstdbase = " --enable-clocale=gnu" - # Configure gcc running on the target to default to an architecture which will # be compatible with that of gcc-runtime (which is cross compiled to be target # specific). For example, for ARM, ARMv6+ adds atomic instructions that may From patchwork Wed Jul 15 11:02:37 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ross Burton X-Patchwork-Id: 92517 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 104E9C44507 for ; Wed, 15 Jul 2026 11:02:53 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.msgproc01-g2.3708.1784113366765036452 for ; Wed, 15 Jul 2026 04:02:46 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="dkim: body hash did not verify" header.i=@arm.com header.s=foss header.b=ZiMKPuKr; spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: ross.burton@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 057BD1477 for ; Wed, 15 Jul 2026 04:02:42 -0700 (PDT) Received: from cesw-amp-gbt-1s-m12830-04.lab.cambridge.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 E78093F7B4 for ; Wed, 15 Jul 2026 04:02:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=arm.com; s=foss; t=1784113366; bh=vAiIThzblVpoP+BXA9BZGFc8tBgWLzMatqC84UT5AFE=; h=From:To:Subject:Date:In-Reply-To:References:From; b=ZiMKPuKrfyjOL+eBGHgVa2f5zQyDkQoMGq1Shl6ieJdplPz85xKueMANUkSDQpZVh el6p/TBWZ4KUJJM5QtdMZ9KNALPwbq74ZAnVd30UzIQ52sV30kg9kPciMmnxSe2eRI 7Xzfm2Md8c8JkTrJ/drhQbV8KqFsfkhqQIpiU0gI= From: Ross Burton To: openembedded-core@lists.openembedded.org Subject: [PATCH 4/4] msmtp: remove LSB-specific overrides Date: Wed, 15 Jul 2026 12:02:37 +0100 Message-ID: <20260715110237.1692760-4-ross.burton@arm.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20260715110237.1692760-1-ross.burton@arm.com> References: <20260715110237.1692760-1-ross.burton@arm.com> MIME-Version: 1.0 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, 15 Jul 2026 11:02:53 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-core/message/240947 The linuxstdbase override was used by the poky-lsb distribution, which aimed to be compatible with the Linux Standard Base specification. LSB is long-dead and poky-lsb was removed back in 2018 with the thud release[1]. Clarify the recipe by removing this obsolete alternative. [1] meta-yocto 00fdefff55 ("poky-altcfg: Replace poky-lsb with poky-altcfg") Signed-off-by: Ross Burton --- meta/recipes-extended/msmtp/msmtp_1.8.32.bb | 4 ---- 1 file changed, 4 deletions(-) diff --git a/meta/recipes-extended/msmtp/msmtp_1.8.32.bb b/meta/recipes-extended/msmtp/msmtp_1.8.32.bb index 548c94aaaf6..7f39f66f65a 100644 --- a/meta/recipes-extended/msmtp/msmtp_1.8.32.bb +++ b/meta/recipes-extended/msmtp/msmtp_1.8.32.bb @@ -18,10 +18,6 @@ inherit gettext autotools update-alternatives pkgconfig EXTRA_OECONF += "--without-libsecret --without-libgsasl --without-libidn" ALTERNATIVE:${PN} = "sendmail" -# /usr/lib/sendmial is required by LSB core test -ALTERNATIVE:${PN}:linuxstdbase = "sendmail usr-lib-sendmail" ALTERNATIVE_TARGET[sendmail] = "${bindir}/msmtp" ALTERNATIVE_LINK_NAME[sendmail] = "${sbindir}/sendmail" -ALTERNATIVE_TARGET[usr-lib-sendmail] = "${bindir}/msmtp" -ALTERNATIVE_LINK_NAME[usr-lib-sendmail] = "/usr/lib/sendmail" ALTERNATIVE_PRIORITY = "100"