All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/14] hw: Fix various --without-default-devices issues
@ 2019-12-31 18:32 Philippe Mathieu-Daudé
  2019-12-31 18:32 ` [PATCH 01/14] hw/usb/redirect: Do not link 'usb-redir' device when USB not enabled Philippe Mathieu-Daudé
                   ` (14 more replies)
  0 siblings, 15 replies; 41+ messages in thread
From: Philippe Mathieu-Daudé @ 2019-12-31 18:32 UTC (permalink / raw)
  To: Paolo Bonzini, qemu-devel
  Cc: Fam Zheng, Eduardo Habkost, Michael S. Tsirkin, Jason Wang,
	Mark Cave-Ayland, Artyom Tarasenko, Aleksandar Markovic,
	qemu-ppc, Gerd Hoffmann, Aleksandar Rikalo, Richard Henderson,
	Philippe Mathieu-Daudé,
	Aurelien Jarno, David Gibson

Various fixes when configured with --without-default-devices
and building each machine individually.
Adding the corresponding CI tests is out of the scope of this
series.

This series is pushed on top of "hw/i386: Allow building
machines without IOMMU" [*] here:
https://gitlab.com/philmd/qemu/commits/kconfig_misc_fixes

Happy new year!

[*] https://lists.gnu.org/archive/html/qemu-devel/2019-12/msg05230.html

Philippe Mathieu-Daudé (14):
  hw/usb/redirect: Do not link 'usb-redir' device when USB not enabled
  hw/intc/i8259: Fix Kconfig dependency on ISA bus
  hw/i386/Kconfig: Let the MicroVM machine select the SERIAL_ISA config
  hw/i386: Restrict fw_cfg to the PC machines
  hw/i2c/Kconfig: Add an entry for the SMBus
  hw/ppc/Kconfig: Restrict the MPC I2C controller to e500-based
    platforms
  hw/ppc/Kconfig: Let the Sam460ex board use the PowerPC 405 devices
  hw/ppc/Kconfig: Let the Xilinx Virtex5 ML507 use the PPC-440 devices
  hw/ppc/Makefile: Simplify the sPAPR PCI objects rule
  hw/ppc/Kconfig: Only select fw_cfg with machines using OpenBIOS
  hw/ppc/Kconfig: Only select FDT helper for machines using it
  hw/nvram/Kconfig: Add an entry for the NMC93xx EEPROM
  hw/nvram/Kconfig: Restrict CHRP NVRAM to machines using OpenBIOS or
    SLOF
  hw/intc/Kconfig: Let APIC select IOAPIC

 default-configs/mips-softmmu-common.mak |  1 +
 default-configs/ppc-softmmu.mak         |  1 -
 hw/i2c/Kconfig                          |  8 ++++++--
 hw/i2c/Makefile.objs                    |  3 ++-
 hw/i386/Kconfig                         |  2 +-
 hw/i386/Makefile.objs                   |  2 +-
 hw/intc/Kconfig                         |  2 ++
 hw/net/Kconfig                          |  2 ++
 hw/nvram/Kconfig                        |  8 ++++++++
 hw/nvram/Makefile.objs                  |  4 ++--
 hw/ppc/Kconfig                          | 20 ++++++++++++++++++++
 hw/ppc/Makefile.objs                    |  9 ++++-----
 hw/scsi/Kconfig                         |  1 +
 hw/sparc/Kconfig                        |  1 +
 hw/sparc64/Kconfig                      |  1 +
 hw/usb/Makefile.objs                    |  2 ++
 16 files changed, 54 insertions(+), 13 deletions(-)

-- 
2.21.0



^ permalink raw reply	[flat|nested] 41+ messages in thread

end of thread, other threads:[~2020-01-07 14:10 UTC | newest]

Thread overview: 41+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-31 18:32 [PATCH 00/14] hw: Fix various --without-default-devices issues Philippe Mathieu-Daudé
2019-12-31 18:32 ` [PATCH 01/14] hw/usb/redirect: Do not link 'usb-redir' device when USB not enabled Philippe Mathieu-Daudé
2020-01-07 12:24   ` Thomas Huth
2019-12-31 18:32 ` [PATCH 02/14] hw/intc/i8259: Fix Kconfig dependency on ISA bus Philippe Mathieu-Daudé
2020-01-07 12:28   ` Thomas Huth
2019-12-31 18:32 ` [PATCH 03/14] hw/i386/Kconfig: Let the MicroVM machine select the SERIAL_ISA config Philippe Mathieu-Daudé
2020-01-07 10:00   ` Paolo Bonzini
2020-01-07 10:06     ` Philippe Mathieu-Daudé
2019-12-31 18:32 ` [PATCH 04/14] hw/i386: Restrict fw_cfg to the PC machines Philippe Mathieu-Daudé
2020-01-07 10:00   ` Paolo Bonzini
2020-01-07 10:01   ` Paolo Bonzini
2020-01-07 10:07     ` Philippe Mathieu-Daudé
2020-01-07 10:16     ` Michael S. Tsirkin
2020-01-07 12:22       ` Paolo Bonzini
2019-12-31 18:32 ` [PATCH 05/14] hw/i2c/Kconfig: Add an entry for the SMBus Philippe Mathieu-Daudé
2019-12-31 19:16   ` Corey Minyard
2020-01-01 10:25     ` Philippe Mathieu-Daudé
2020-01-01 16:15       ` Corey Minyard
2020-01-01 16:21         ` Philippe Mathieu-Daudé
2019-12-31 18:32 ` [PATCH 06/14] hw/ppc/Kconfig: Restrict the MPC I2C controller to e500-based platforms Philippe Mathieu-Daudé
2020-01-02  2:03   ` David Gibson
2019-12-31 18:32 ` [PATCH 07/14] hw/ppc/Kconfig: Let the Sam460ex board use the PowerPC 405 devices Philippe Mathieu-Daudé
2020-01-01 11:29   ` BALATON Zoltan
2020-01-01 15:37     ` Philippe Mathieu-Daudé
2020-01-02  2:03   ` David Gibson
2019-12-31 18:32 ` [PATCH 08/14] hw/ppc/Kconfig: Let the Xilinx Virtex5 ML507 use the PPC-440 devices Philippe Mathieu-Daudé
2020-01-02  2:04   ` David Gibson
2019-12-31 18:32 ` [PATCH 09/14] hw/ppc/Makefile: Simplify the sPAPR PCI objects rule Philippe Mathieu-Daudé
2020-01-02  2:05   ` David Gibson
2019-12-31 18:32 ` [PATCH 10/14] hw/ppc/Kconfig: Only select fw_cfg with machines using OpenBIOS Philippe Mathieu-Daudé
2020-01-02  2:05   ` David Gibson
2019-12-31 18:32 ` [PATCH 11/14] hw/ppc/Kconfig: Only select FDT helper for machines using it Philippe Mathieu-Daudé
2020-01-02  2:06   ` David Gibson
2019-12-31 18:32 ` [PATCH 12/14] hw/nvram/Kconfig: Add an entry for the NMC93xx EEPROM Philippe Mathieu-Daudé
2020-01-01 10:31   ` Philippe Mathieu-Daudé
2020-01-07 10:08     ` Paolo Bonzini
2019-12-31 18:32 ` [PATCH 13/14] hw/nvram/Kconfig: Restrict CHRP NVRAM to machines using OpenBIOS or SLOF Philippe Mathieu-Daudé
2020-01-02  2:07   ` David Gibson
2019-12-31 18:32 ` [RFC PATCH 14/14] hw/intc/Kconfig: Let APIC select IOAPIC Philippe Mathieu-Daudé
2020-01-07  9:58   ` Paolo Bonzini
2020-01-07 10:11 ` [PATCH 00/14] hw: Fix various --without-default-devices issues Paolo Bonzini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.