From: Samuel Mendoza-Jonas Date: Thu, 28 Mar 2019 03:52:35 +0000 (+1100) Subject: utils/pb-console: Use -m to run shell in own process group X-Git-Tag: v1.10.3^0 X-Git-Url: http://git.ozlabs.org/?a=commitdiff_plain;h=1cd261748c005b3c64b45f745a2fb3fb26236a4c;p=petitboot 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 --- 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