* [PATCH] commands: boot_order: note that it's OMAP specific in help text
@ 2020-10-02 9:29 Ahmad Fatoum
2020-10-05 7:10 ` Sascha Hauer
0 siblings, 1 reply; 2+ messages in thread
From: Ahmad Fatoum @ 2020-10-02 9:29 UTC (permalink / raw)
To: barebox; +Cc: Ahmad Fatoum
Kconfig and online documentation don't indicate that it's OMAP
specific. Fix this.
Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
arch/arm/mach-omap/boot_order.c | 4 ++--
commands/Kconfig | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/arch/arm/mach-omap/boot_order.c b/arch/arm/mach-omap/boot_order.c
index db22513bde42..4b74fdba66b6 100644
--- a/arch/arm/mach-omap/boot_order.c
+++ b/arch/arm/mach-omap/boot_order.c
@@ -70,13 +70,13 @@ static int cmd_boot_order(int argc, char *argv[])
}
BAREBOX_CMD_HELP_START(boot_order)
-BAREBOX_CMD_HELP_TEXT("Set warm boot order of up to four devices. Each device can be one of:")
+BAREBOX_CMD_HELP_TEXT("Set OMAP warm boot order of up to four devices. Each device can be one of:")
BAREBOX_CMD_HELP_TEXT("xip xipwait nand onenand mmc1 mmc2_1 mmc2_2 uart usb_1 usb_ulpi usb_2")
BAREBOX_CMD_HELP_END
BAREBOX_CMD_START(boot_order)
.cmd = cmd_boot_order,
- BAREBOX_CMD_DESC("set warm boot order")
+ BAREBOX_CMD_DESC("set OMAP warm boot order")
BAREBOX_CMD_OPTS("DEVICE...")
BAREBOX_CMD_GROUP(CMD_GRP_BOOT)
BAREBOX_CMD_HELP(cmd_boot_order_help)
diff --git a/commands/Kconfig b/commands/Kconfig
index 9114d3cb31a5..df18715f20d4 100644
--- a/commands/Kconfig
+++ b/commands/Kconfig
@@ -285,9 +285,9 @@ config CMD_AT91_BOOT_TEST
config CMD_BOOT_ORDER
tristate
depends on ARCH_OMAP4
- prompt "boot_order"
+ prompt "OMAP boot_order"
help
- Set warm boot order (the next boot device on a warm reset).
+ Set OMAP warm boot order (the next boot device on a warm reset).
Usage: boot_order DEVICE...
--
2.28.0
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] commands: boot_order: note that it's OMAP specific in help text
2020-10-02 9:29 [PATCH] commands: boot_order: note that it's OMAP specific in help text Ahmad Fatoum
@ 2020-10-05 7:10 ` Sascha Hauer
0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2020-10-05 7:10 UTC (permalink / raw)
To: Ahmad Fatoum; +Cc: barebox
On Fri, Oct 02, 2020 at 11:29:55AM +0200, Ahmad Fatoum wrote:
> Kconfig and online documentation don't indicate that it's OMAP
> specific. Fix this.
>
> Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
> ---
> arch/arm/mach-omap/boot_order.c | 4 ++--
> commands/Kconfig | 4 ++--
> 2 files changed, 4 insertions(+), 4 deletions(-)
Applied, thanks
Sascha
>
> diff --git a/arch/arm/mach-omap/boot_order.c b/arch/arm/mach-omap/boot_order.c
> index db22513bde42..4b74fdba66b6 100644
> --- a/arch/arm/mach-omap/boot_order.c
> +++ b/arch/arm/mach-omap/boot_order.c
> @@ -70,13 +70,13 @@ static int cmd_boot_order(int argc, char *argv[])
> }
>
> BAREBOX_CMD_HELP_START(boot_order)
> -BAREBOX_CMD_HELP_TEXT("Set warm boot order of up to four devices. Each device can be one of:")
> +BAREBOX_CMD_HELP_TEXT("Set OMAP warm boot order of up to four devices. Each device can be one of:")
> BAREBOX_CMD_HELP_TEXT("xip xipwait nand onenand mmc1 mmc2_1 mmc2_2 uart usb_1 usb_ulpi usb_2")
> BAREBOX_CMD_HELP_END
>
> BAREBOX_CMD_START(boot_order)
> .cmd = cmd_boot_order,
> - BAREBOX_CMD_DESC("set warm boot order")
> + BAREBOX_CMD_DESC("set OMAP warm boot order")
> BAREBOX_CMD_OPTS("DEVICE...")
> BAREBOX_CMD_GROUP(CMD_GRP_BOOT)
> BAREBOX_CMD_HELP(cmd_boot_order_help)
> diff --git a/commands/Kconfig b/commands/Kconfig
> index 9114d3cb31a5..df18715f20d4 100644
> --- a/commands/Kconfig
> +++ b/commands/Kconfig
> @@ -285,9 +285,9 @@ config CMD_AT91_BOOT_TEST
> config CMD_BOOT_ORDER
> tristate
> depends on ARCH_OMAP4
> - prompt "boot_order"
> + prompt "OMAP boot_order"
> help
> - Set warm boot order (the next boot device on a warm reset).
> + Set OMAP warm boot order (the next boot device on a warm reset).
>
> Usage: boot_order DEVICE...
>
> --
> 2.28.0
>
>
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
>
--
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 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-10-05 7:10 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-02 9:29 [PATCH] commands: boot_order: note that it's OMAP specific in help text Ahmad Fatoum
2020-10-05 7:10 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox