From: "Sascha Hauer" <s.hauer@pengutronix.de>
To: "Fabian Pfitzner" <f.pfitzner@pengutronix.de>
Cc: BAREBOX <barebox@lists.infradead.org>,
Fabian Pfitzner <f.pfitzner@pengutronix.de>
Subject: Re: [PATCH 1/2] bootsource: add bootsource instance index variable
Date: Thu, 21 May 2026 12:02:13 +0000 [thread overview]
Message-ID: <E1wQ26P-00000004V38-1zAy@pty.whiteo.stw.pengutronix.de> (raw)
In-Reply-To: <20260520-fpf-bootsource-instance-index-v1-1-29942f0e8f2f@pengutronix.de>
On 2026-05-20 10:32, Fabian Pfitzner wrote:
> The bootsource instance index variable shows us,
> from which image on the instance we have booted from.
> This is a useful information, when there a multiple boot images contained
> on one flash (e. g. primary and recovery).
>
> Add a C interface to set and get the bootsource instance:
>
> int bootsource_get_instance_index(void);
> void bootsource_set_instance_index(int index);
>
> Also export the shell variable "bootsource_instance_index".
>
> Signed-off-by: Fabian Pfitzner <f.pfitzner@pengutronix.de>
> ---
> Documentation/user/variables.rst | 1 +
> common/bootsource.c | 20 ++++++++++++++++++++
> include/bootsource.h | 11 +++++++++++
> 3 files changed, 32 insertions(+)
>
> diff --git a/Documentation/user/variables.rst b/Documentation/user/variables.rst
> index 61808f1d72de29477b02b53ad11ecf530b4ebc80..c8b34679068cff4356fec306942b85561187652f 100644
> --- a/Documentation/user/variables.rst
> +++ b/Documentation/user/variables.rst
> @@ -112,6 +112,7 @@ of all active variables with special meaning along with a short description:
> bootargs Linux Kernel parameters
> bootsource The source barebox has been booted from
> bootsource_instance The instance of the source barebox has been booted from
> + bootsource_instance_index Tells us whether we have booted from primary(0) or secondary(1)
> global.boot.default default boot order
> ...
>
> diff --git a/common/bootsource.c b/common/bootsource.c
> index f608019bb758f820eea19213c75b389df6b4158c..53549d4171ff33bfcdd7436261cd8f4d3598099a 100644
> --- a/common/bootsource.c
> +++ b/common/bootsource.c
> @@ -33,6 +33,7 @@ static const char *bootsource_str[BOOTSOURCE_MAX] = {
>
> static enum bootsource bootsource = BOOTSOURCE_UNKNOWN;
> static int bootsource_instance = BOOTSOURCE_INSTANCE_UNKNOWN;
> +static int bootsource_instance_index = BOOTSOURCE_INSTANCE_INDEX_UNKNOWN;
>
> const char *bootsource_to_string(enum bootsource src)
> {
> @@ -226,6 +227,17 @@ int bootsource_set(enum bootsource src, int instance)
> return alias_id;
> }
>
> +void bootsource_set_instance_index(int index)
> +{
> + if (index < 0 || index > 1)
> + pr_err("Invalid index: %d, expected either 0 or 1", index);
> +
> + char str[1];
> +
> + sprintf(str, "%d", index);
The string is too small. You need another byte for the '\0'
Sascha
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
next prev parent reply other threads:[~2026-05-21 12:04 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-20 8:32 [PATCH 0/2] Implement recovery boot detection for SPI flash Fabian Pfitzner
2026-05-20 8:32 ` [PATCH 1/2] bootsource: add bootsource instance index variable Fabian Pfitzner
2026-05-21 12:02 ` Sascha Hauer [this message]
2026-05-20 8:33 ` [PATCH 2/2] arch: arm: imx: detect secondary boot Fabian Pfitzner
2026-05-21 12:27 ` Sascha Hauer
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=E1wQ26P-00000004V38-1zAy@pty.whiteo.stw.pengutronix.de \
--to=s.hauer@pengutronix.de \
--cc=barebox@lists.infradead.org \
--cc=f.pfitzner@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