18 Oct
2025
18 Oct
'25
8:40 a.m.
From: Simon Glass <sjg@chromium.org> For now just drop to the cmdline so that the state can be examined. This will aid debugging. Signed-off-by: Simon Glass <sjg@chromium.org> --- boot/bootctl/bootctl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/boot/bootctl/bootctl.c b/boot/bootctl/bootctl.c index 9fa943222db..7155ff0a8f0 100644 --- a/boot/bootctl/bootctl.c +++ b/boot/bootctl/bootctl.c @@ -58,7 +58,8 @@ int bootctl_run(void) ret = bc_logic_poll(logic); if (ret) { printf("logic err %dE\n", ret); - hang(); + /* could hang here */ + return ret; } } while (ret != -ESHUTDOWN); -- 2.43.0