aboutsummaryrefslogtreecommitdiffstats
path: root/tools/ioemu/patches/qemu-hvm-banner
diff options
context:
space:
mode:
Diffstat (limited to 'tools/ioemu/patches/qemu-hvm-banner')
-rw-r--r--tools/ioemu/patches/qemu-hvm-banner22
1 files changed, 22 insertions, 0 deletions
diff --git a/tools/ioemu/patches/qemu-hvm-banner b/tools/ioemu/patches/qemu-hvm-banner
new file mode 100644
index 0000000000..f199eae97a
--- /dev/null
+++ b/tools/ioemu/patches/qemu-hvm-banner
@@ -0,0 +1,22 @@
+Index: ioemu/monitor.c
+===================================================================
+--- ioemu.orig/monitor.c 2006-07-12 11:35:00.705828339 +0100
++++ ioemu/monitor.c 2006-07-12 11:35:01.307752925 +0100
+@@ -2293,15 +2293,14 @@
+
+ static void monitor_start_input(void)
+ {
+- readline_start("(qemu) ", 0, monitor_handle_command1, NULL);
++ readline_start("(HVMXen) ", 0, monitor_handle_command1, NULL);
+ }
+
+ void monitor_init(CharDriverState *hd, int show_banner)
+ {
+ monitor_hd = hd;
+ if (show_banner) {
+- term_printf("QEMU %s monitor - type 'help' for more information\n",
+- QEMU_VERSION);
++ term_printf("HVM device model. type 'q' to exit\n");
+ }
+ qemu_chr_add_read_handler(hd, term_can_read, term_read, NULL);
+ monitor_start_input();