From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Fri, 31 May 2024 08:09:20 +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 1sCvS4-000ErX-2H for lore@lore.pengutronix.de; Fri, 31 May 2024 08:09:20 +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 1sCvS4-0007FK-9J; Fri, 31 May 2024 08:09:20 +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 1sCvRM-0005V3-IM; Fri, 31 May 2024 08:08:36 +0200 Received: from [2a0a:edc0:0:1101:1d::54] (helo=dude05.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1sCvRM-003h4Z-5c; Fri, 31 May 2024 08:08:36 +0200 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1sCvRM-00F6Lx-0P; Fri, 31 May 2024 08:08:36 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Fri, 31 May 2024 08:08:36 +0200 Message-Id: <20240531060836.3599334-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20240517161337.423934-1-abbotti@mev.co.uk> References: <20240517161337.423934-1-abbotti@mev.co.uk> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] mtd-utils: Fix mount.ubifs 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: Ian Abbott 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 e1af5832de50340289de0756e97067b1ea287183. Michael [sent from post-receive hook] On Fri, 31 May 2024 08:08:36 +0200, Ian Abbott wrote: > The mount.ubifs UBIFS mount helper script does not get installed unless > mtd-utils is configured with `--with-ubifs`. That is controlled by the > PTXCONF_MTD_UTILS_UBIFS variable. Make the PTXdist > MTD_UTILS_UBIFS_MOUNTHELPER configuration option select the > MTD_UTILS_UBIFS_UBIFS configuration option. (Note: MTD_UTILS_UBIFS is > currently only selected by MTD_UTILS_MKFS_UBIFS.) > > Fixes: 9b9185a7696e ("mtd-utils: Add support for ubifs mount helper") > Signed-off-by: Ian Abbott > Message-Id: <20240517161337.423934-1-abbotti@mev.co.uk> > Signed-off-by: Michael Olbrich > > diff --git a/rules/mtd-utils.in b/rules/mtd-utils.in > index 8cc55cabaac2..00dba7c1d458 100644 > --- a/rules/mtd-utils.in > +++ b/rules/mtd-utils.in > @@ -291,6 +291,7 @@ config MTD_UTILS_UBIFORMAT > config MTD_UTILS_UBIFS_MOUNTHELPER > bool > prompt "mount.ubifs" > + select MTD_UTILS_UBIFS > help > Simplifies attaching an ubi and mounting an ubifs via /etc/fstab. >