[PATCH] arm64: bootm: Add dryrun check
Sascha Hauer
s.hauer at pengutronix.de
Tue Jun 22 21:37:26 PDT 2021
Abort booting in time when doing a dryrun boot.
Signed-off-by: Sascha Hauer <s.hauer at pengutronix.de>
---
arch/arm/lib64/armlinux.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/arch/arm/lib64/armlinux.c b/arch/arm/lib64/armlinux.c
index 0ba4d30b8e..e05f29984d 100644
--- a/arch/arm/lib64/armlinux.c
+++ b/arch/arm/lib64/armlinux.c
@@ -16,6 +16,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(devicetree, 0, 0, 0);
--
2.29.2
More information about the barebox
mailing list