qemu-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-commits] [qemu/qemu] 9941af: configure: show debug-info option in


From: GitHub
Subject: [Qemu-commits] [qemu/qemu] 9941af: configure: show debug-info option in --help output
Date: Mon, 01 Apr 2013 09:30:12 -0700

  Branch: refs/heads/master
  Home:   https://github.com/qemu/qemu
  Commit: 9941afdef4fc898ed1588468095d1e36574427a1
      
https://github.com/qemu/qemu/commit/9941afdef4fc898ed1588468095d1e36574427a1
  Author: Dunrong Huang <address@hidden>
  Date:   2013-03-28 (Thu, 28 Mar 2013)

  Changed paths:
    M configure

  Log Message:
  -----------
  configure: show debug-info option in --help output

"--enable-debug-info" and "--disable-debug-info" were not shown
in --help output.

Signed-off-by: Dunrong Huang <address@hidden>
Signed-off-by: Stefan Hajnoczi <address@hidden>


  Commit: 0f9d76e5a9a396a2209761265ba6d98ce89b6a32
      
https://github.com/qemu/qemu/commit/0f9d76e5a9a396a2209761265ba6d98ce89b6a32
  Author: liguang <address@hidden>
  Date:   2013-03-28 (Thu, 28 Mar 2013)

  Changed paths:
    M hw/i386/pc.c

  Log Message:
  -----------
  hw/i386/pc: format load_linux function

Signed-off-by: liguang <address@hidden>
Signed-off-by: Stefan Hajnoczi <address@hidden>


  Commit: b0d62a3d8e1ea9eccd246829a03e2d23f0982431
      
https://github.com/qemu/qemu/commit/b0d62a3d8e1ea9eccd246829a03e2d23f0982431
  Author: Peter Maydell <address@hidden>
  Date:   2013-03-28 (Thu, 28 Mar 2013)

  Changed paths:
    M hw/sparc/sun4m.c
    M hw/tcx.c

  Log Message:
  -----------
  hw/tcx: Remove unused 'addr' field and the property that sets it

Remove the 'addr' field from TCXState (since it is completely unused),
also the qdev property which sets it. This seems to be a relic from
many years past; devices don't need to know where they are mapped.

Signed-off-by: Peter Maydell <address@hidden>
Signed-off-by: Stefan Hajnoczi <address@hidden>


  Commit: 4ce5dae88ecf2bafa0cd663de7e923728b1b3672
      
https://github.com/qemu/qemu/commit/4ce5dae88ecf2bafa0cd663de7e923728b1b3672
  Author: Peter Maydell <address@hidden>
  Date:   2013-04-01 (Mon, 01 Apr 2013)

  Changed paths:
    M hw/sysbus.c

  Log Message:
  -----------
  sysbus: make SysBusDeviceClass::init optional

Make the SysBusDeviceClass::init optional, for devices which
genuinely don't need to do anything here. In particular, simple
devices which can do all their initialization in their
instance_init method don't need either a DeviceClass::realize
or SysBusDeviceClass::init method.

Signed-off-by: Peter Maydell <address@hidden>
Acked-by: Andreas Färber <address@hidden>
Reviewed-by: Peter Crosthwaite <address@hidden>
Message-id: address@hidden
Signed-off-by: Anthony Liguori <address@hidden>


  Commit: a86f200aeb66a4f402b22241a5d8360f02bfc090
      
https://github.com/qemu/qemu/commit/a86f200aeb66a4f402b22241a5d8360f02bfc090
  Author: Peter Maydell <address@hidden>
  Date:   2013-04-01 (Mon, 01 Apr 2013)

  Changed paths:
    M hw/arm/musicpal.c

  Log Message:
  -----------
  musicpal: qdevify musicpal-misc

Make musicpal-misc into its own (trivial) qdev device, so we
can get rid of the abuse of sysbus_add_memory().

Signed-off-by: Peter Maydell <address@hidden>
Reviewed-by: Peter Crosthwaite <address@hidden>
Reviewed-by: Andreas Färber <address@hidden>
Message-id: address@hidden
Signed-off-by: Anthony Liguori <address@hidden>


  Commit: 20cf850c6ac5bf1ef13de1da93a5c8b5ea28b304
      
https://github.com/qemu/qemu/commit/20cf850c6ac5bf1ef13de1da93a5c8b5ea28b304
  Author: Peter Maydell <address@hidden>
  Date:   2013-04-01 (Mon, 01 Apr 2013)

  Changed paths:
    M hw/milkymist-hw.h
    M hw/milkymist-minimac2.c

  Log Message:
  -----------
  milkymist-minimac2: Just expose buffers as a sysbus mmio region

Just expose the register buffers memory as a standard sysbus mmio
region which the creator of the device can map, rather than
providing a qdev property which the creator has to set to the
base address and then doing the mapping in the device's own
init function.

Signed-off-by: Peter Maydell <address@hidden>
Reviewed-by: Andreas Färber <address@hidden>
Acked-by: Michael Walle <address@hidden>
Message-id: address@hidden
Signed-off-by: Anthony Liguori <address@hidden>


  Commit: c34e120554c31d45bdfbac08a5c1d9ef92a62020
      
https://github.com/qemu/qemu/commit/c34e120554c31d45bdfbac08a5c1d9ef92a62020
  Author: Peter Maydell <address@hidden>
  Date:   2013-04-01 (Mon, 01 Apr 2013)

  Changed paths:
    M hw/milkymist-hw.h
    M hw/milkymist-softusb.c

  Log Message:
  -----------
  milkymist-softusb: Don't map RAM memory regions in the device itself

Don't map the pmem and dmem RAM memory regions in the milkymist-softusb
device itself. Instead just expose them as sysbus mmio regions which
the device creator can map appropriately. This allows us to drop the
pmem_base and dmem_base properties. Instead of going via
cpu_physical_memory_read/_write when the device wants to access the
RAMs, we just keep a host pointer to the memory and use that.

Signed-off-by: Peter Maydell <address@hidden>
Reviewed-by: Andreas Färber <address@hidden>
Acked-by: Michael Walle <address@hidden>
Message-id: address@hidden
Signed-off-by: Anthony Liguori <address@hidden>


  Commit: c31bc98e3bcf52fe1cd4b9b7a70869330eae80ea
      
https://github.com/qemu/qemu/commit/c31bc98e3bcf52fe1cd4b9b7a70869330eae80ea
  Author: Peter Maydell <address@hidden>
  Date:   2013-04-01 (Mon, 01 Apr 2013)

  Changed paths:
    M hw/milkymist-softusb.c

  Log Message:
  -----------
  hw/milkymist-softusb: set buffer in softusb_read_{dmem, pmem} error path

Make sure we set the buffer to something in the softusb_read_{dmem,pmem}
error paths, since the caller will use the buffer unconditionally.
(Newer gcc is smart enough to spot this and complain about 'may be
used uninitialized'.)

Signed-off-by: Peter Maydell <address@hidden>
Message-id: address@hidden
Signed-off-by: Anthony Liguori <address@hidden>


  Commit: e63d28d7dbfcec81214aecc9ff0aaee46e87aa44
      
https://github.com/qemu/qemu/commit/e63d28d7dbfcec81214aecc9ff0aaee46e87aa44
  Author: Peter Maydell <address@hidden>
  Date:   2013-04-01 (Mon, 01 Apr 2013)

  Changed paths:
    M hw/sysbus.c
    M hw/sysbus.h

  Log Message:
  -----------
  sysbus: Remove sysbus_add_memory and sysbus_del_memory

Remove the sysbus_add_memory and sysbus_del_memory functions. These
are trivial wrappers for mapping a memory region into the system
memory space, and have no users now.  Sysbus devices should never map
their own memory regions anyway; the correct API for mapping an mmio
region is for the creator of the device to use sysbus_mmio_map.

Signed-off-by: Peter Maydell <address@hidden>
Reviewed-by: Andreas Färber <address@hidden>
Message-id: address@hidden
Signed-off-by: Anthony Liguori <address@hidden>


  Commit: c7b4c36714a442ae5abd26de293cb5e967be6e12
      
https://github.com/qemu/qemu/commit/c7b4c36714a442ae5abd26de293cb5e967be6e12
  Author: Anthony Liguori <address@hidden>
  Date:   2013-04-01 (Mon, 01 Apr 2013)

  Changed paths:
    M configure
    M hw/i386/pc.c
    M hw/sparc/sun4m.c
    M hw/tcx.c

  Log Message:
  -----------
  Merge remote-tracking branch 'stefanha/trivial-patches' into staging

# By Dunrong Huang (1) and others
# Via Stefan Hajnoczi
* stefanha/trivial-patches:
  hw/tcx: Remove unused 'addr' field and the property that sets it
  hw/i386/pc: format load_linux function
  configure: show debug-info option in --help output


Compare: https://github.com/qemu/qemu/compare/535740641557...c7b4c36714a4

reply via email to

[Prev in Thread] Current Thread [Next in Thread]