diff --git a/qemu-rr b/qemu-rr index a55975b..163dc29 100755 --- a/qemu-rr +++ b/qemu-rr @@ -1,4 +1,4 @@ #!/usr/bin/env bash set -eu -./run -r "$@" -./run -R "$@" +./run --record "$@" +./run --replay "$@" diff --git a/run b/run index e9f19c1..d839468 100755 --- a/run +++ b/run @@ -220,13 +220,11 @@ Setup a kernel init parameter that makes the emulator quit immediately after boo ''' ) self.add_argument( - '-R', '--replay', default=False, help='Replay a QEMU run record deterministically' ) self.add_argument( - '-r', '--record', default=False, help='Record a QEMU run record for later replay with `-R`'