* [PATCH] riscv: bootm: Add dryrun check
@ 2021-06-23 4:38 Sascha Hauer
0 siblings, 0 replies; only message in thread
From: Sascha Hauer @ 2021-06-23 4:38 UTC (permalink / raw)
To: Barebox List
Abort booting in time when doing a dryrun boot.
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
arch/riscv/lib/bootm.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/arch/riscv/lib/bootm.c b/arch/riscv/lib/bootm.c
index b3e41de4a8..c99ae18974 100644
--- a/arch/riscv/lib/bootm.c
+++ b/arch/riscv/lib/bootm.c
@@ -13,6 +13,9 @@ static int do_bootm_linux(struct image_data *data)
if (IS_ERR(fn))
return PTR_ERR(fn);
+ if (data->dryrun)
+ return 0;
+
shutdown_barebox();
fn(0, devicetree, 0);
--
2.29.2
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2021-06-23 4:40 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-23 4:38 [PATCH] riscv: bootm: Add dryrun check Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox