From f56bdd2bb77bc723bd63dc3f384e21a23b726151 Mon Sep 17 00:00:00 2001 From: Idan Horowitz Date: Tue, 7 Sep 2021 02:17:36 +0300 Subject: [PATCH] Meta: Don't immediately continue in serenity.sh's gdb option This allows us to step through the initial boot instructions. --- Meta/serenity.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meta/serenity.sh b/Meta/serenity.sh index f2f7b616cc2576..072a32936252d0 100755 --- a/Meta/serenity.sh +++ b/Meta/serenity.sh @@ -271,7 +271,7 @@ run_gdb() { export SERENITY_KERNEL_CMDLINE="$KERNEL_CMD_LINE" fi sleep 1 - "$(get_top_dir)/Meta/debug-kernel.sh" "${GDB_ARGS[@]}" -ex cont + "$(get_top_dir)/Meta/debug-kernel.sh" "${GDB_ARGS[@]}" fi }