1. 12 10月, 2011 1 次提交
  2. 04 10月, 2011 4 次提交
  3. 16 9月, 2011 8 次提交
  4. 10 9月, 2011 1 次提交
  5. 09 9月, 2011 1 次提交
  6. 02 9月, 2011 3 次提交
  7. 01 9月, 2011 4 次提交
  8. 23 8月, 2011 2 次提交
  9. 22 8月, 2011 2 次提交
  10. 21 8月, 2011 3 次提交
  11. 05 8月, 2011 1 次提交
  12. 29 7月, 2011 2 次提交
    • J
      Allow to leave type on default in -machine · 2645c6dc
      Jan Kiszka 提交于
      This allows to specify -machine options without setting an explicit
      machine type. We will pick the default machine in this case. Requesting
      the list of available machines is still possible via '-machine ?' e.g.
      Signed-off-by: NJan Kiszka <jan.kiszka@siemens.com>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      2645c6dc
    • W
      showing a splash picture when start · 3d3b8303
      wayne 提交于
          Added options to let qemu transfer two configuration files to bios:
      "bootsplash.bmp" and "etc/boot-menu-wait", which could be specified by command
          -boot splash=P,splash-time=T
      P is jpg/bmp file name or an absolute path, T have a max value of 0xffff, unit
      is ms. With these two options, if user invoke qemu with menu=on option, then
      a splash picture would be showed in a given time. For example:
          qemu -boot menu=on,splash=/root/boot.bmp,splash-time=5000
      would make boot.bmp shown as a brand with 5 seconds in the booting up process.
      This feature need the new seabios's support, which could be got from git.
      Signed-off-by: NWayne Xia <xiawenc@linux.vnet.ibm.com>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      3d3b8303
  13. 26 7月, 2011 1 次提交
  14. 24 7月, 2011 3 次提交
  15. 23 7月, 2011 1 次提交
  16. 05 7月, 2011 1 次提交
  17. 16 6月, 2011 2 次提交
    • J
      Allow silent system resets · e063eb1f
      Jan Kiszka 提交于
      This allows qemu_system_reset to be issued silently for internal
      purposes, ie. without sending out a monitor event. Convert the system
      reset after startup to the silent mode.
      Signed-off-by: NJan Kiszka <jan.kiszka@siemens.com>
      Signed-off-by: NLuiz Capitulino <lcapitulino@redhat.com>
      e063eb1f
    • A
      Introduce format string for pid_t · 953ffe0f
      Andreas Färber 提交于
      BeOS and Haiku on i386 use long for 32-bit types, including pid_t.
      Using %d with pid_t therefore results in a warning.
      
      Unfortunately POSIX:2008 does not define a PRId* string for pid_t.
      
      In some places pid_t was previously casted to long and %ld hardcoded.
      The predecessor of this patch added another upcast for the simpletrace
      filename but was not applied to date.
      
      Since new uses of pid_t with %d keep creeping in, let's instead define
      an OS-dependent format string and use that consistently.
      
      Cc: Stefan Hajnoczi <stefanha@gmail.com>
      Cc: Blue Swirl <blauwirbel@gmail.com>
      Cc: Ingo Weinhold <ingo_weinhold@gmx.de>
      Cc: Gleb Natapov <gleb@redhat.com>
      Signed-off-by: NAndreas Färber <andreas.faerber@web.de>
      Signed-off-by: NBlue Swirl <blauwirbel@gmail.com>
      953ffe0f