From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Wed, 09 Apr 2025 13:44:23 +0200 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 1u2Tqx-00AOf8-1X for lore@lore.pengutronix.de; Wed, 09 Apr 2025 13:44:23 +0200 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1u2Tqx-0006Zz-4c; Wed, 09 Apr 2025 13:44:23 +0200 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 1u2Tqg-0006Zl-Ic; Wed, 09 Apr 2025 13:44:06 +0200 Received: from dude03.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::39]) 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 1u2Tqg-0045x6-1F; Wed, 09 Apr 2025 13:44:06 +0200 Received: from lgo by dude03.red.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1u2Tqg-00Ex6F-0z; Wed, 09 Apr 2025 13:44:06 +0200 From: =?UTF-8?q?Leonard=20G=C3=B6hrs?= To: ptxdist@pengutronix.de Date: Wed, 9 Apr 2025 13:43:49 +0200 Message-Id: <20250409114349.3548589-1-l.goehrs@pengutronix.de> X-Mailer: git-send-email 2.39.5 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [ptxdist] [PATCH] 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 Signed-off-by: Leonard Göhrs --- rules/coreutils.in | 6 ++++++ rules/coreutils.make | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/rules/coreutils.in b/rules/coreutils.in index a14e9ffbc..28d580a8a 100644 --- a/rules/coreutils.in +++ b/rules/coreutils.in @@ -785,5 +785,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 177a4f3ac..5eb535af9 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 \ -- 2.39.5