From: Ahmad Fatoum <a.fatoum@pengutronix.de>
To: barebox@lists.infradead.org
Cc: bst@pengutronix.de, Ahmad Fatoum <a.fatoum@pengutronix.de>
Subject: [PATCH 1/3] commands: devlookup: factor out cmd_export_val
Date: Fri, 4 Apr 2025 20:06:38 +0200 [thread overview]
Message-ID: <20250404180640.2962778-2-a.fatoum@pengutronix.de> (raw)
In-Reply-To: <20250404180640.2962778-1-a.fatoum@pengutronix.de>
Until we have support for capturing command output into a variable,
future commands will continue to have a -v parameter or similar for
printing the output of a command into a variable.
Add a helper for this that either prints it to the variable or to
stdout. This will allow easy migration to command output capture once we
have it.
Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
commands/devlookup.c | 16 ++--------------
common/command.c | 13 +++++++++++++
include/command.h | 2 ++
3 files changed, 17 insertions(+), 14 deletions(-)
diff --git a/commands/devlookup.c b/commands/devlookup.c
index bc9bd9461443..4a2c9b773661 100644
--- a/commands/devlookup.c
+++ b/commands/devlookup.c
@@ -9,18 +9,6 @@
#include <linux/ctype.h>
#include <environment.h>
-static int report(const char *variable, const char *val)
-{
- if (!val)
- return -(errno ?: EINVAL);
-
- if (variable)
- return setenv(variable, val);
-
- printf("%s\n", val);
- return 0;
-}
-
static int do_devlookup(int argc, char *argv[])
{
const char *variable = NULL, *devicefile, *paramname;
@@ -56,9 +44,9 @@ static int do_devlookup(int argc, char *argv[])
}
if (paramname)
- ret = report(variable, dev_get_param(cdev->dev, paramname));
+ ret = cmd_export_val(variable, dev_get_param(cdev->dev, paramname));
else
- ret = report(variable, dev_name(cdev->dev));
+ ret = cmd_export_val(variable, dev_name(cdev->dev));
out:
cdev_close(cdev);
diff --git a/common/command.c b/common/command.c
index 014b85f9a35f..a119b0f41b3a 100644
--- a/common/command.c
+++ b/common/command.c
@@ -128,6 +128,19 @@ struct command *find_cmd (const char *cmd)
}
EXPORT_SYMBOL(find_cmd);
+int cmd_export_val(const char *variable, const char *val)
+{
+ if (!val)
+ return -EINVAL;
+
+ if (variable)
+ return setenv(variable, val);
+
+ printf("%s\n", val);
+ return 0;
+}
+EXPORT_SYMBOL(cmd_export_val);
+
/*
* Put all commands into a linked list. Without module support we could use
* the raw command array, but with module support a list is easier to handle.
diff --git a/include/command.h b/include/command.h
index 26e06077b071..03ac270d1305 100644
--- a/include/command.h
+++ b/include/command.h
@@ -52,6 +52,7 @@ extern struct command * const __barebox_cmd_end[];
/* common/command.c */
#ifdef CONFIG_COMMAND_SUPPORT
struct command *find_cmd(const char *cmd);
+int cmd_export_val(const char *variable, const char *val);
int execute_command(int argc, char **argv);
void barebox_cmd_usage(struct command *cmdtp);
int run_command(const char *cmd);
@@ -59,6 +60,7 @@ int run_command(const char *cmd);
static inline struct command *find_cmd(const char *cmd) { return NULL; }
static inline int execute_command(int argc, char **argv) { return -ENOSYS; }
static inline void barebox_cmd_usage(struct command *cmdtp) {}
+static inline int cmd_export_val(const char *variable, const char *val) { return -ENOSYS; }
static inline int run_command(const char *cmd) { return -ENOSYS; }
#endif
--
2.39.5
next prev 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 ` Ahmad Fatoum [this message]
2025-04-04 18:06 ` [PATCH 2/3] commands: findmnt: add support for exporting target as variable Ahmad Fatoum
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-2-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