eclair: turn off gdb pagination by default

Change-Id: I7758d97b90705310bc57cb9b6da6f6af436ea7fb
This commit is contained in:
Balazs Gerofi
2020-12-21 09:47:42 +09:00
committed by Masamichi Takagi
parent 7145c4d383
commit b3b1883ad8

View File

@ -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;
}