From b3b1883ad80aaa861c3135a60a9907a1cd34e03e Mon Sep 17 00:00:00 2001 From: Balazs Gerofi Date: Mon, 21 Dec 2020 09:47:42 +0900 Subject: [PATCH] eclair: turn off gdb pagination by default Change-Id: I7758d97b90705310bc57cb9b6da6f6af436ea7fb --- executer/user/eclair.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/executer/user/eclair.c b/executer/user/eclair.c index 9a2f77b2..793080e6 100644 --- a/executer/user/eclair.c +++ b/executer/user/eclair.c @@ -1179,7 +1179,7 @@ static int start_gdb(void) { sprintf(buf, "target remote :%d", ntohs(sin.sin_port)); execlp("gdb", "eclair", "-q", "-ex", "set prompt (eclair) ", - "-ex", buf, opt.kernel_path, NULL); + "-ex", buf, opt.kernel_path, "-ex", "set pagination off", NULL); perror("execlp"); return 3; }