diff mbox series

[1/4] base-files: remove LSB-specific overrides

Message ID 20260715110237.1692760-1-ross.burton@arm.com
State New
Headers show
Series [1/4] base-files: remove LSB-specific overrides | expand

Commit Message

Ross Burton July 15, 2026, 11:02 a.m. UTC
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 <ross.burton@arm.com>
---
 .../base-files/base-files_3.0.14.bb             | 17 -----------------
 1 file changed, 17 deletions(-)
diff mbox series

Patch

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"