[OE-core] [PATCH] runqemu: change terminal's INTR key in 'serial' mode

2012-12-21 Thread Trevor Woerner
If you are using an image in '-serial stdio' mode, temporarily change the terminal's interrupt character to 'Ctrl-]' for the duration of the image run. In this way, hitting 'Ctrl-C' for something running in the image doesn't accidentally abort the entire qemu session. Signed-off-by: Trevor Woerner

[OE-core] [PATCH] runqemu: change terminal's INTR key in 'serial' mode

2012-12-21 Thread Trevor Woerner
If you are using an image in '-serial stdio' mode, temporarily change the terminal's interrupt character to 'Ctrl-]' for the duration of the image run. In this way, hitting 'Ctrl-C' for something running in the image doesn't accidentally abort the entire qemu session. Signed-off-by: Trevor Woerner

Re: [OE-core] [PATCH] runqemu: change terminal's INTR key in 'serial' mode

2012-12-21 Thread Trevor Woerner
On Fri, Dec 21, 2012 at 8:00 AM, Trevor Woerner wrote: > +if [ "x$SERIALSTDIO" = "x1" ]; then > +echo "Escape character is '^]'" > +stty intr ^] > +fi Hold on. This should be "Interrupt charater". ___ Openembedded-core mailing list Ope

Re: [OE-core] [PATCH] runqemu: change terminal's INTR key in 'serial' mode

2012-12-22 Thread Scott Garman
On 12/21/2012 05:04 AM, Trevor Woerner wrote: If you are using an image in '-serial stdio' mode, temporarily change the terminal's interrupt character to 'Ctrl-]' for the duration of the image run. In this way, hitting 'Ctrl-C' for something running in the image doesn't accidentally abort the ent