From 1cd261748c005b3c64b45f745a2fb3fb26236a4c Mon Sep 17 00:00:00 2001 From: Samuel Mendoza-Jonas Date: Thu, 28 Mar 2019 14:52:35 +1100 Subject: [PATCH] utils/pb-console: Use -m to run shell in own process group Use -m to have the shell spawned by pb-console run it its own process group, allowing commands such as Ctrl-C (SIGINT) to behave as expected rather than killing the shell. Signed-off-by: Samuel Mendoza-Jonas --- utils/pb-console | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/pb-console b/utils/pb-console index 5ba98cc..ab5eaaa 100644 --- a/utils/pb-console +++ b/utils/pb-console @@ -141,5 +141,5 @@ while : do $ui $verbose_opt reset - $shell + $shell -m done -- 2.39.2