1. 06 3月, 2009 6 次提交
  2. 01 3月, 2009 1 次提交
  3. 28 2月, 2009 5 次提交
  4. 16 2月, 2009 1 次提交
  5. 11 2月, 2009 6 次提交
  6. 06 2月, 2009 1 次提交
  7. 25 1月, 2009 1 次提交
    • B
      Synch code, help and docs · d2c639d6
      blueswir1 提交于
      Rearrange code, help printout and docs so that they are in the same
      (hopefully more logical) order for easier maintenance.
      
      Add help and docs for undocumented options.
      
      Reformat slightly for more consistent help output.
      
      Add comments to encourage better synchronization in the future.
      
      
      git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6432 c046a42c-6fe2-441c-8c8c-71466251a162
      d2c639d6
  8. 24 1月, 2009 1 次提交
  9. 23 1月, 2009 4 次提交
  10. 22 1月, 2009 3 次提交
  11. 20 1月, 2009 1 次提交
  12. 18 1月, 2009 1 次提交
  13. 17 1月, 2009 3 次提交
    • A
      Make sure monitor appears as a vc · 4c621805
      aliguori 提交于
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      
      
      
      git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6358 c046a42c-6fe2-441c-8c8c-71466251a162
      4c621805
    • A
      Fix character devices after DisplayState refactoring · 2796dae0
      aliguori 提交于
      The DisplayState refactoring changed the machine init function to create a
      DisplayState for each VGA device instead of being passed an existing
      DisplayState.  This change is critical to enable multiple graphics device
      support.
      
      Unfortunately, the serial/parallel/console code is structured today to run
      before machine init to fill out the CharDriverState table which the machine
      init function uses to determine whether to create the required devices.
      
      Since a 'vc' is a type of CharDriverState, the CharDriverState code requires
      that a DisplayState exist before it runs creating a circular dependency.
      
      To fix this, this splits the creation of the initial CharDriverState from
      the initialization of the text console.  We can then in a second step associate
      a DisplayState with all TextConsoles.  This allows us to create the
      CharDriverState's first, machine init, then associate the TextConsoles with
      a DisplayState.
      
      This code screams for more cleanup.
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      
      
      
      git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6352 c046a42c-6fe2-441c-8c8c-71466251a162
      2796dae0
    • A
      graphical_console_init change (Stefano Stabellini) · 3023f332
      aliguori 提交于
      Patch 5/7
      
      This patch changes the graphical_console_init function to return an
      allocated DisplayState instead of a QEMUConsole.
      
      This patch contains just the graphical_console_init change and few other
      modifications mainly in console.c and vl.c.
      It was necessary to move the display frontends (e.g. sdl and vnc)
      initialization after machine->init in vl.c.
      
      This patch does *not* include any required changes to any device, these
      changes come with the following patches.
      
      Patch 6/7
      
      This patch changes the QEMUMachine init functions not to take a
      DisplayState as an argument because is not needed any more;
      
      In few places the graphic hardware initialization function was called
      only if DisplayState was not NULL, now they are always called.
      Apart from these cases, the rest are all mechanical substitutions.
      
      Patch 7/7
      
      This patch updates the graphic device code to use the new
      graphical_console_init function.
      
      As for the previous patch, in few places graphical_console_init was called
      only if DisplayState was not NULL, now it is always called.
      Apart from these cases, the rest are all mechanical substitutions.
      Signed-off-by: NStefano Stabellini <stefano.stabellini@eu.citrix.com>
      Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
      
      
      
      git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6344 c046a42c-6fe2-441c-8c8c-71466251a162
      3023f332
  14. 16 1月, 2009 6 次提交