We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Re-rerun QEMU + gdb
super low priority, but sometimes my prompt gets corrupted when asked to rerun qemu.
I can enter y, but inserts ^M for some reason.
y
^M
stty icrnl seems to fix this once I quit. Not sure if the below would help, since output from the terminal gets further corrupted it seems...
stty icrnl
diff --git a/boot-qemu.py b/boot-qemu.py index a2efc2481900..4c32598ab3c3 100755 --- a/boot-qemu.py +++ b/boot-qemu.py @@ -781,6 +781,9 @@ def launch_qemu(cfg): utils.red("Killing QEMU...") qemu_process.kill() + # Sometimes gdb disables icrnl so that at the prompt below, hitting + # enter inserts ^M + subprocess.run(["stty", "icrnl"]) answer = input("Re-run QEMU + gdb? [y/n] ") if answer.lower() == "n": break
The text was updated successfully, but these errors were encountered:
No branches or pull requests
super low priority, but sometimes my prompt gets corrupted when asked to rerun qemu.
I can enter
y
, but inserts^M
for some reason.stty icrnl
seems to fix this once I quit. Not sure if the below would help, since output from the terminal gets further corrupted it seems...The text was updated successfully, but these errors were encountered: