diff --git a/panda/plugins/syscalls2/README.md b/panda/plugins/syscalls2/README.md index d1c71340f1b..7f7b4dcc678 100644 --- a/panda/plugins/syscalls2/README.md +++ b/panda/plugins/syscalls2/README.md @@ -172,7 +172,7 @@ And then invoke it as: ```sh $PANDA_PATH/x86_64-softmmu/panda-system-x86_64 -replay foo \ - -os windows-32-7 -panda syscalls2 -panda filereadmon + -os windows-32-7sp1 -panda syscalls2 -panda filereadmon ``` If you'd like more examples, you can have a look at `loaded`, `filereadmon` and `file_taint`, all of which use `syscalls2`. diff --git a/panda/plugins/syscalls2/syscalls2.cpp b/panda/plugins/syscalls2/syscalls2.cpp index 47976598f3e..01ece9b3bfe 100644 --- a/panda/plugins/syscalls2/syscalls2.cpp +++ b/panda/plugins/syscalls2/syscalls2.cpp @@ -1026,7 +1026,7 @@ bool init_plugin(void *self) { // Don't bother if we're not on a supported target #if defined(TARGET_I386) || defined(TARGET_ARM) || defined(TARGET_MIPS) if(panda_os_familyno == OS_UNKNOWN){ - std::cerr << PANDA_MSG "ERROR No OS profile specified. You can choose one with the -os switch, eg: '-os linux-32-debian-3.2.81-486' or '-os windows-32-7' " << std::endl; + std::cerr << PANDA_MSG "ERROR No OS profile specified. You can choose one with the -os switch, eg: '-os linux-32-debian-3.2.81-486' or '-os windows-32-7sp[01]' " << std::endl; return false; } else if (panda_os_familyno == OS_LINUX) { diff --git a/panda/python/examples/example_win.py b/panda/python/examples/example_win.py index bd153dab8d1..e7885f299ad 100755 --- a/panda/python/examples/example_win.py +++ b/panda/python/examples/example_win.py @@ -12,7 +12,7 @@ if rec: panda = Panda(qcow="win7pro_x86.qcow2",mem="4G", extra_args=["-vnc", "127.0.0.1:5900", "-monitor","telnet:127.0.0.1:55555,server,nowait"]) else: - panda = Panda(qcow="win7pro_x86.qcow2",mem="4G", extra_args=["-nographic"],os_version="windows-32-7") + panda = Panda(qcow="win7pro_x86.qcow2",mem="4G", extra_args=["-nographic"],os_version="windows-32-7sp1") first = True