mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Ahmad Fatoum <a.fatoum@pengutronix.de>
To: barebox@lists.infradead.org
Cc: bst@pengutronix.de, Ahmad Fatoum <a.fatoum@pengutronix.de>
Subject: [PATCH 2/3] commands: findmnt: add support for exporting target as variable
Date: Fri,  4 Apr 2025 20:06:39 +0200	[thread overview]
Message-ID: <20250404180640.2962778-3-a.fatoum@pengutronix.de> (raw)
In-Reply-To: <20250404180640.2962778-1-a.fatoum@pengutronix.de>

This can be useful information in a script, so let's allow exporting it
into a variable.

Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
 commands/Kconfig   |  3 ++-
 commands/findmnt.c | 31 ++++++++++++++++++++++++-------
 2 files changed, 26 insertions(+), 8 deletions(-)

diff --git a/commands/Kconfig b/commands/Kconfig
index 313910d6649b..f36dcf02a8ea 100644
--- a/commands/Kconfig
+++ b/commands/Kconfig
@@ -690,7 +690,7 @@ config CMD_FINDMNT
 	help
 	  Find a file system
 
-	  Usage: findmnt [ DEVICE | -T FILE ]
+	  Usage: findmnt [ DEVICE | -T FILE ] [-v VARIABLE]
 
 	  findmnt will list all mounted filesystems or search
 	  for a filesystem when given the mountpoint or the
@@ -698,6 +698,7 @@ config CMD_FINDMNT
 
 	  Options:
 		-T		mount target file path
+		-v VARIABLE	export target to specified VARIABLE
 
 config CMD_PARTED
 	tristate
diff --git a/commands/findmnt.c b/commands/findmnt.c
index 3c9a520b8500..c64ef8760684 100644
--- a/commands/findmnt.c
+++ b/commands/findmnt.c
@@ -15,12 +15,18 @@ static void print_header(bool *header_printed)
 	*header_printed = true;
 }
 
-static void report_findmnt(const struct fs_device *fsdev)
+static void report_findmnt(const struct fs_device *fsdev,
+			   const char *variable)
 {
 	const char *backingstore;
 
 	backingstore = fsdev->backingstore ?: cdev_name(fsdev->cdev) ?: "none";
 
+	if (variable) {
+		cmd_export_val(variable, backingstore);
+		return;
+	}
+
 	printf("%-20s%-25s%-10s%-20s\n", fsdev->path, backingstore,
 	       fsdev->driver->drv.name, fsdev->options);
 }
@@ -31,9 +37,13 @@ static int do_findmnt(int argc, char *argv[])
 	struct fs_device *target = NULL;
 	char *device = NULL;
 	int opt, dirfd = AT_FDCWD;
+	const char *variable = NULL;
 
-	while ((opt = getopt(argc, argv, "T:")) > 0) {
+	while ((opt = getopt(argc, argv, "T:v:")) > 0) {
 		switch(opt) {
+		case 'v':
+			variable = optarg;
+			break;
 		case 'T':
 			target = get_fsdevice_by_path(dirfd, optarg);
 			if (!target)
@@ -50,9 +60,12 @@ static int do_findmnt(int argc, char *argv[])
 	if ((target && argc > 0) || (!target && argc > 1))
 		return COMMAND_ERROR_USAGE;
 
+	if (variable)
+		header_printed = true;
+
 	if (target) {
 		print_header(&header_printed);
-		report_findmnt(target);
+		report_findmnt(target, variable);
 		return 0;
 	}
 
@@ -60,13 +73,16 @@ static int do_findmnt(int argc, char *argv[])
 		device = canonicalize_path(dirfd, argv[0]);
 		if (!device)
 			return COMMAND_ERROR;
+	} else if (variable) {
+		return COMMAND_ERROR_USAGE;
 	}
 
 	for_each_fs_device(target) {
 		if (!device || streq_ptr(target->path, device) ||
 		    streq_ptr(target->backingstore, device)) {
-			print_header(&header_printed);
-			report_findmnt(target);
+			if (!variable)
+				print_header(&header_printed);
+			report_findmnt(target, variable);
 		} else {
 			const char *backingstore;
 			struct cdev *cdev;
@@ -80,7 +96,7 @@ static int do_findmnt(int argc, char *argv[])
 
 			if (streq_ptr(backingstore, cdev->name)) {
 				print_header(&header_printed);
-				report_findmnt(target);
+				report_findmnt(target, variable);
 			}
 			cdev_close(cdev);
 		}
@@ -98,12 +114,13 @@ BAREBOX_CMD_HELP_TEXT("source device as an argument")
 BAREBOX_CMD_HELP_TEXT("")
 BAREBOX_CMD_HELP_TEXT("Options:")
 BAREBOX_CMD_HELP_OPT ("-T",  "mount target file path")
+BAREBOX_CMD_HELP_OPT ("-v VARIABLE",  "export target to specified VARIABLE")
 BAREBOX_CMD_HELP_END
 
 BAREBOX_CMD_START(findmnt)
 	.cmd		= do_findmnt,
 	BAREBOX_CMD_DESC("find a file system")
-	BAREBOX_CMD_OPTS("[ DEVICE | -T FILE ]")
+	BAREBOX_CMD_OPTS("[ DEVICE | -T FILE ] [-v VAR]")
 	BAREBOX_CMD_GROUP(CMD_GRP_FILE)
 	BAREBOX_CMD_HELP(cmd_findmnt_help)
 BAREBOX_CMD_END
-- 
2.39.5




  parent reply	other threads:[~2025-04-04 18:15 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-04 18:06 [PATCH 0/3] commands: findmnt: add option to print kernel root option Ahmad Fatoum
2025-04-04 18:06 ` [PATCH 1/3] commands: devlookup: factor out cmd_export_val Ahmad Fatoum
2025-04-04 18:06 ` Ahmad Fatoum [this message]
2025-04-04 18:06 ` [PATCH 3/3] commands: findmnt: add option to print kernel root option Ahmad Fatoum

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250404180640.2962778-3-a.fatoum@pengutronix.de \
    --to=a.fatoum@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    --cc=bst@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox