From: Markus Burri <markus.burri@mt.com>
To: barebox@lists.infradead.org
Cc: Markus Burri <markus.burri@mt.com>
Subject: [PATCH v1] Add bootchooser command option for active boot target
Date: Fri, 14 Apr 2023 11:40:20 +0200 [thread overview]
Message-ID: <20230414094020.2389226-1-markus.burri@mt.com> (raw)
Add bootchooser command option to extract and save the active target.
The information about active target are stored into two variables
(bootchooser.active_target and bootchooser.active_boot)
This information may be used into scripts to do actions related to the active
target before starting it.
Signed-off-by: Markus Burri <markus.burri@mt.com>
Gbp-Pq: Name 0058-Add-command-for-next-boot-target.patch
---
Documentation/user/bootchooser.rst | 6 ++++++
commands/bootchooser.c | 12 +++++++++++-
common/bootchooser.c | 21 +++++++++++++++++++++
include/bootchooser.h | 1 +
4 files changed, 39 insertions(+), 1 deletion(-)
diff --git a/Documentation/user/bootchooser.rst b/Documentation/user/bootchooser.rst
index 8456e11..68ec1b6 100644
--- a/Documentation/user/bootchooser.rst
+++ b/Documentation/user/bootchooser.rst
@@ -168,6 +168,12 @@ options not specific to any boot target.
set of ``global.bootchooser.<targetname>.<variablename>`` variables must exist.
``global.bootchooser.last_chosen``
*bootchooser* sets this to the boot target that was chosen on last boot (index).
+``global.bootchooser.active_target``
+ Set to the active boot target that will boot next.
+ Call *bootchooser -n* to update the value.
+``global.bootchooser.active_boot``
+ Set to the boot device of the active target that will boot next.
+ Call *bootchooser -n* to update the value.
.. _bootchooser,setup_example:
diff --git a/commands/bootchooser.c b/commands/bootchooser.c
index ac763a6..20bd2d6 100644
--- a/commands/bootchooser.c
+++ b/commands/bootchooser.c
@@ -59,8 +59,9 @@ static int do_bootchooser(int argc, char *argv[])
int info = 0;
bool done_something = false;
bool last_boot_successful = false;
+ bool active_boot_target = false;
- while ((opt = getopt(argc, argv, "a:p:is")) > 0) {
+ while ((opt = getopt(argc, argv, "a:p:ins")) > 0) {
switch (opt) {
case 'a':
if (!strcmp(optarg, "default"))
@@ -77,6 +78,9 @@ static int do_bootchooser(int argc, char *argv[])
case 'i':
info = 1;
break;
+ case 'n':
+ active_boot_target = true;
+ break;
case 's':
last_boot_successful = true;
break;
@@ -120,6 +124,11 @@ static int do_bootchooser(int argc, char *argv[])
done_something = true;
}
+ if (active_boot_target) {
+ bootchooser_active_target(bootchooser);
+ done_something = true;
+ }
+
if (!done_something) {
printf("Nothing to do\n");
ret = COMMAND_ERROR_USAGE;
@@ -137,6 +146,7 @@ BAREBOX_CMD_HELP_TEXT("Options:")
BAREBOX_CMD_HELP_OPT ("-a <n|default> [TARGETS]", "set remaining attempts of given targets to 'n' or the default attempts")
BAREBOX_CMD_HELP_OPT ("-p <n|default> [TARGETS]", "set priority of given targets to 'n' or the default priority")
BAREBOX_CMD_HELP_OPT ("-i", "Show information about the bootchooser")
+BAREBOX_CMD_HELP_OPT ("-n", "Save active boot target to bootchooser.active_target and active boot device to bootchooser.active_boot")
BAREBOX_CMD_HELP_OPT ("-s", "Mark the last boot successful")
BAREBOX_CMD_HELP_END
diff --git a/common/bootchooser.c b/common/bootchooser.c
index c08db03..1ec29e6 100644
--- a/common/bootchooser.c
+++ b/common/bootchooser.c
@@ -619,6 +619,27 @@ void bootchooser_info(struct bootchooser *bc)
bc->last_chosen->name : "unknown");
}
+/**
+ * bootchooser_active_target - Save information about active boot target
+ * @bc: The bootchooser
+ */
+void bootchooser_active_target(struct bootchooser *bc)
+{
+ struct bootchooser_target *target;
+
+ list_for_each_entry(target, &bc->targets, list) {
+ if (bootchooser_target_ok(target, NULL)) {
+ if (bc->verbose) {
+ pr_info("bootchooser.active_target=%s\n", target->name);
+ pr_info("bootchooser.active_boot=%s\n", target->boot);
+ }
+ nvvar_add("bootchooser.active_target", target->name);
+ nvvar_add("bootchooser.active_boot", target->boot);
+ return;
+ }
+ }
+}
+
/**
* bootchooser_get_target - get the target that shall be booted next
* @bc: The bootchooser
diff --git a/include/bootchooser.h b/include/bootchooser.h
index 7822c01..9825593 100644
--- a/include/bootchooser.h
+++ b/include/bootchooser.h
@@ -12,6 +12,7 @@ int bootchooser_save(struct bootchooser *bootchooser);
int bootchooser_put(struct bootchooser *bootchooser);
void bootchooser_info(struct bootchooser *bootchooser);
+void bootchooser_active_target(struct bootchooser *bc);
int bootchooser_boot(struct bootchooser *bc);
--
2.39.2
next reply other threads:[~2023-04-14 9:42 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-14 9:40 Markus Burri [this message]
2023-04-14 9:49 ` Ahmad Fatoum
[not found] ` <PA4PR03MB748854E525009BC8F015D570EF999@PA4PR03MB7488.eurprd03.prod.outlook.com>
2023-04-14 12:27 ` EXTERNAL - " Ahmad Fatoum
2023-04-14 12:41 ` Burri Markus LabTec
2023-04-14 12:46 ` Ahmad Fatoum
2023-04-17 9:42 ` Burri Markus LabTec
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=20230414094020.2389226-1-markus.burri@mt.com \
--to=markus.burri@mt.com \
--cc=barebox@lists.infradead.org \
/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