From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Fri, 13 Feb 2026 11:03:00 +0100 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1vqq0p-001DDq-1S for lore@lore.pengutronix.de; Fri, 13 Feb 2026 11:03:00 +0100 Received: from [127.0.0.1] (helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1vqq0q-0000gP-5z; Fri, 13 Feb 2026 11:03:00 +0100 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1vqq0h-0000ft-NA; Fri, 13 Feb 2026 11:02:51 +0100 Received: from dude05.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::54]) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1vqq0g-000YeH-0a; Fri, 13 Feb 2026 11:02:51 +0100 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.98.2) (envelope-from ) id 1vqq0h-0000000Bggc-20tM; Fri, 13 Feb 2026 11:02:51 +0100 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Fri, 13 Feb 2026 11:02:51 +0100 Message-ID: <20260213100251.2785687-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20250409114349.3548589-1-l.goehrs@pengutronix.de> References: <20250409114349.3548589-1-l.goehrs@pengutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] coreutils: add option to enable xattr handling support X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: =?UTF-8?q?Leonard=20G=C3=B6hrs?= Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false Thanks, applied as 3af7dbf521899f4439339d3cdcdb0fd84c185a36. Michael [sent from post-receive hook] On Fri, 13 Feb 2026 11:02:51 +0100, Leonard Göhrs wrote: > Signed-off-by: Leonard Göhrs > Message-Id: <20250409114349.3548589-1-l.goehrs@pengutronix.de> > [mol: add missing ATTR dependency] > Signed-off-by: Michael Olbrich > > diff --git a/rules/coreutils.in b/rules/coreutils.in > index a14e9ffbc694..d1d50fe42e6e 100644 > --- a/rules/coreutils.in > +++ b/rules/coreutils.in > @@ -6,6 +6,7 @@ menuconfig COREUTILS > select LIBC_M if COREUTILS_SORT > select LIBC_RT > select GCCLIBS_GCC_S > + select ATTR if COREUTILS_XATTR > select SYSTEMD if COREUTILS_SYSTEMD > help > This package contains the essential basic system utilities. > @@ -785,5 +786,11 @@ config COREUTILS_NICE > comment "busybox' nice is selected!" > depends on BUSYBOX_NICE > > +config COREUTILS_XATTR > + bool > + prompt "Extended attributes (xattr) support" > + help > + Add support for extended attributes handling to coreutils tools. > + > endif > > diff --git a/rules/coreutils.make b/rules/coreutils.make > index 177a4f3ac7be..5eb535af9dbc 100644 > --- a/rules/coreutils.make > +++ b/rules/coreutils.make > @@ -143,7 +143,7 @@ COREUTILS_CONF_OPT := \ > --disable-acl \ > --disable-assert \ > --disable-rpath \ > - --disable-xattr \ > + --$(call ptx/endis, PTXCONF_COREUTILS_XATTR)-xattr \ > --$(call ptx/endis, PTXCONF_COREUTILS_SYSTEMD)-systemd \ > --disable-libsmack \ > --disable-libcap \