From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Fri, 12 Dec 2025 15:54:05 +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 1vU4Wz-00AhdK-08 for lore@lore.pengutronix.de; Fri, 12 Dec 2025 15:54:05 +0100 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 1vU4Wy-0005zx-Sg; Fri, 12 Dec 2025 15:54:04 +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 1vU4V7-0003Q3-4v; Fri, 12 Dec 2025 15:52:09 +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 1vU4V6-005JKO-2k; Fri, 12 Dec 2025 15:52:08 +0100 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.98.2) (envelope-from ) id 1vU4V6-0000000ChzO-3LEP; Fri, 12 Dec 2025 15:52:08 +0100 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Fri, 12 Dec 2025 15:52:08 +0100 Message-ID: <20251212145208.3028976-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20251208120811.119194-1-ada@thorsis.com> References: <20251208120811.119194-1-ada@thorsis.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] util-linux: findmnt: Add missing dependencies 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: Alexander Dahl 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 bcf5ca5d4f8450800aa585c1191528a427b31bd2. Michael [sent from post-receive hook] On Fri, 12 Dec 2025 15:52:08 +0100, Alexander Dahl wrote: > When only selecting PTXCONF_UTIL_LINUX_FINDMNT and no other UTIL_LINUX > tool, targetinstall failed because the 'findmnt' binary was not built, > and thus could not be found. New dependencies where deduced by looking > at the source of misc-utils/findmnt.c in upstream util-linux code. > > Fixes: f64a42bc82ec ("util-linux: add support for enabling the findmnt command") > Signed-off-by: Alexander Dahl > Message-Id: <20251208120811.119194-1-ada@thorsis.com> > Signed-off-by: Michael Olbrich > > diff --git a/rules/util-linux.in b/rules/util-linux.in > index 5f7fbd2698c4..2ffb1c68d234 100644 > --- a/rules/util-linux.in > +++ b/rules/util-linux.in > @@ -99,6 +99,9 @@ comment "BusyBox' fdisk is selected!" > config UTIL_LINUX_FINDMNT > bool > prompt "findmnt" > + select UTIL_LINUX_LIBBLKID > + select UTIL_LINUX_LIBMOUNT > + select UTIL_LINUX_LIBSMARTCOLS > help > findmnt - Find a mounted device from its mountpoint and vise versa >