Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
seabios: remove PCI drivers from bios.bin
bios.bin is now used only by ISA PC, so PCI drivers are not necessary. Reviewed-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
- Loading branch information
Showing
2 changed files
with
18 additions
and
9 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,21 +1,30 @@ | ||
| # for qemu machine types 1.7 + older | ||
| # need to turn off features (xhci,uas) to make it fit into 128k | ||
| # SeaBIOS Configuration for -M isapc | ||
|
|
||
| CONFIG_QEMU=y | ||
| CONFIG_ROM_SIZE=128 | ||
| CONFIG_ATA_DMA=n | ||
| CONFIG_BOOTSPLASH=n | ||
| CONFIG_XEN=n | ||
| CONFIG_USB_OHCI=n | ||
| CONFIG_USB_XHCI=n | ||
| CONFIG_USB_UAS=n | ||
| CONFIG_ATA_PIO32=n | ||
| CONFIG_AHCI=n | ||
| CONFIG_SDCARD=n | ||
| CONFIG_TCGBIOS=n | ||
| CONFIG_MPT_SCSI=n | ||
| CONFIG_VIRTIO_BLK=n | ||
| CONFIG_VIRTIO_SCSI=n | ||
| CONFIG_PVSCSI=n | ||
| CONFIG_ESP_SCSI=n | ||
| CONFIG_LSI_SCSI=n | ||
| CONFIG_MEGASAS=n | ||
| CONFIG_PVSCSI=n | ||
| CONFIG_MPT_SCSI=n | ||
| CONFIG_NVME=n | ||
| CONFIG_USE_SMM=n | ||
| CONFIG_VGAHOOKS=n | ||
| CONFIG_HOST_BIOS_GEOMETRY=n | ||
| CONFIG_USB=n | ||
| CONFIG_PMTIMER=n | ||
| CONFIG_PCIBIOS=n | ||
| CONFIG_DISABLE_A20=n | ||
| CONFIG_WRITABLE_UPPERMEMORY=n | ||
| CONFIG_TCGBIOS=n | ||
| CONFIG_ACPI=n | ||
| CONFIG_ACPI_PARSE=n | ||
| CONFIG_DEBUG_SERIAL=n | ||
| CONFIG_DEBUG_SERIAL_MMIO=n |