[freenos] r326 committed - Removed -s from Qemu targets, except for qemu_debug....

  • From: codesite-noreply@xxxxxxxxxx
  • To: freenos@xxxxxxxxxxxxx
  • Date: Sun, 30 Aug 2009 19:22:04 +0000

Revision: 326
Author: nieklinnenbank
Date: Sun Aug 30 12:21:38 2009
Log: Removed -s from Qemu targets, except for qemu_debug.
It seems that with -s, Qemu runs a lot slower, as it probably
need some internal processing for the GDB stub.

http://code.google.com/p/freenos/source/detail?r=326

Modified:
 /trunk/site_scons/emulate.py

=======================================
--- /trunk/site_scons/emulate.py        Sun Aug 16 14:28:43 2009
+++ /trunk/site_scons/emulate.py        Sun Aug 30 12:21:38 2009
@@ -20,10 +20,10 @@

 build.target.Append(ENV = os.environ)
 build.PhonyTargets(build.target,
-                  qemu        = 'qemu -usb -cdrom boot/boot.iso -s',
+                  qemu        = 'qemu -usb -cdrom boot/boot.iso',
qemu_debug = 'qemu -curses -usb -cdrom boot/boot.iso -s -S -d int,pcall,exec',
-                  qemu_curses = 'qemu -curses -usb -cdrom boot/boot.iso -s',
-                  qemu_sdl    = 'qemu -sdl -cdrom boot/boot.iso -s',
+                  qemu_curses = 'qemu -curses -usb -cdrom boot/boot.iso',
+                  qemu_sdl    = 'qemu -sdl -cdrom boot/boot.iso',
bochs = 'bochs -q "ata0-slave: type=cdrom, path=boot/boot.iso, status=inserted" ' \
                                           '"boot: cdrom"',
bochs_debug = 'bochs -q "ata0-slave: type=cdrom, path=boot/boot.iso, status=inserted" ' \

Other related posts:

  • » [freenos] r326 committed - Removed -s from Qemu targets, except for qemu_debug.... - codesite-noreply