mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-28 16:14:04 +02:00
OvmfPkg: Drop build flag USE_LEGACY_ISA_STACK and legacy ISA stack
REF:https://bugzilla.tianocore.org/show_bug.cgi?id=1842 According to the discussion at: https://edk2.groups.io/g/devel/topic/30918343#38093 For OVMF, we keep both ISA stacks: * The legacy one in PcAtChipsetPkg/IntelFrameworkModulePkg * The Sio bus based OVMF-specified one introduced by commit a5cc178aeb for a period of time (includes 1 stable tag: edk2-stable201905). And we also keep the Sio bus based OVMF-specified stack as the default one (via a build option 'USE_LEGACY_ISA_STACK') to validate its stability. This commit will propose to drop the legacy ISA stack from OVMF and remove the usage of the build flag 'USE_LEGACY_ISA_STACK' at the same time. This is considered as a preparation for the removal of PcAtChipsetPkg/IsaAcpiDxe & IntelFrameworkModulePkg. Cc: Ray Ni <ray.ni@intel.com> Cc: Jordan Justen <jordan.l.justen@intel.com> Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org> Signed-off-by: Hao A Wu <hao.a.wu@intel.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com>
This commit is contained in:
parent
5506701f79
commit
5626887071
@ -32,7 +32,6 @@
|
|||||||
DEFINE SMM_REQUIRE = FALSE
|
DEFINE SMM_REQUIRE = FALSE
|
||||||
DEFINE TPM2_ENABLE = FALSE
|
DEFINE TPM2_ENABLE = FALSE
|
||||||
DEFINE TPM2_CONFIG_ENABLE = FALSE
|
DEFINE TPM2_CONFIG_ENABLE = FALSE
|
||||||
DEFINE USE_LEGACY_ISA_STACK = FALSE
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Network definition
|
# Network definition
|
||||||
@ -748,16 +747,9 @@
|
|||||||
#
|
#
|
||||||
# ISA Support
|
# ISA Support
|
||||||
#
|
#
|
||||||
!if $(USE_LEGACY_ISA_STACK) == FALSE
|
|
||||||
OvmfPkg/SioBusDxe/SioBusDxe.inf
|
OvmfPkg/SioBusDxe/SioBusDxe.inf
|
||||||
MdeModulePkg/Bus/Pci/PciSioSerialDxe/PciSioSerialDxe.inf
|
MdeModulePkg/Bus/Pci/PciSioSerialDxe/PciSioSerialDxe.inf
|
||||||
MdeModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2KeyboardDxe.inf
|
MdeModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2KeyboardDxe.inf
|
||||||
!else
|
|
||||||
PcAtChipsetPkg/IsaAcpiDxe/IsaAcpi.inf
|
|
||||||
IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/IsaBusDxe.inf
|
|
||||||
IntelFrameworkModulePkg/Bus/Isa/IsaSerialDxe/IsaSerialDxe.inf
|
|
||||||
IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2keyboardDxe.inf
|
|
||||||
!endif
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# SMBIOS Support
|
# SMBIOS Support
|
||||||
|
@ -259,20 +259,11 @@ INF MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf
|
|||||||
INF MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf
|
INF MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf
|
||||||
INF MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf
|
INF MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf
|
||||||
|
|
||||||
!if $(USE_LEGACY_ISA_STACK) == FALSE
|
INF OvmfPkg/SioBusDxe/SioBusDxe.inf
|
||||||
INF OvmfPkg/SioBusDxe/SioBusDxe.inf
|
|
||||||
!ifndef $(SOURCE_DEBUG_ENABLE)
|
!ifndef $(SOURCE_DEBUG_ENABLE)
|
||||||
INF MdeModulePkg/Bus/Pci/PciSioSerialDxe/PciSioSerialDxe.inf
|
INF MdeModulePkg/Bus/Pci/PciSioSerialDxe/PciSioSerialDxe.inf
|
||||||
!endif
|
|
||||||
INF MdeModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2KeyboardDxe.inf
|
|
||||||
!else
|
|
||||||
INF PcAtChipsetPkg/IsaAcpiDxe/IsaAcpi.inf
|
|
||||||
INF IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/IsaBusDxe.inf
|
|
||||||
!ifndef $(SOURCE_DEBUG_ENABLE)
|
|
||||||
INF IntelFrameworkModulePkg/Bus/Isa/IsaSerialDxe/IsaSerialDxe.inf
|
|
||||||
!endif
|
|
||||||
INF IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2keyboardDxe.inf
|
|
||||||
!endif
|
!endif
|
||||||
|
INF MdeModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2KeyboardDxe.inf
|
||||||
|
|
||||||
INF MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf
|
INF MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf
|
||||||
INF OvmfPkg/SmbiosPlatformDxe/SmbiosPlatformDxe.inf
|
INF OvmfPkg/SmbiosPlatformDxe/SmbiosPlatformDxe.inf
|
||||||
|
@ -32,7 +32,6 @@
|
|||||||
DEFINE SMM_REQUIRE = FALSE
|
DEFINE SMM_REQUIRE = FALSE
|
||||||
DEFINE TPM2_ENABLE = FALSE
|
DEFINE TPM2_ENABLE = FALSE
|
||||||
DEFINE TPM2_CONFIG_ENABLE = FALSE
|
DEFINE TPM2_CONFIG_ENABLE = FALSE
|
||||||
DEFINE USE_LEGACY_ISA_STACK = FALSE
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Network definition
|
# Network definition
|
||||||
@ -757,16 +756,9 @@
|
|||||||
#
|
#
|
||||||
# ISA Support
|
# ISA Support
|
||||||
#
|
#
|
||||||
!if $(USE_LEGACY_ISA_STACK) == FALSE
|
|
||||||
OvmfPkg/SioBusDxe/SioBusDxe.inf
|
OvmfPkg/SioBusDxe/SioBusDxe.inf
|
||||||
MdeModulePkg/Bus/Pci/PciSioSerialDxe/PciSioSerialDxe.inf
|
MdeModulePkg/Bus/Pci/PciSioSerialDxe/PciSioSerialDxe.inf
|
||||||
MdeModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2KeyboardDxe.inf
|
MdeModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2KeyboardDxe.inf
|
||||||
!else
|
|
||||||
PcAtChipsetPkg/IsaAcpiDxe/IsaAcpi.inf
|
|
||||||
IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/IsaBusDxe.inf
|
|
||||||
IntelFrameworkModulePkg/Bus/Isa/IsaSerialDxe/IsaSerialDxe.inf
|
|
||||||
IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2keyboardDxe.inf
|
|
||||||
!endif
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# SMBIOS Support
|
# SMBIOS Support
|
||||||
|
@ -260,20 +260,11 @@ INF MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf
|
|||||||
INF MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf
|
INF MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf
|
||||||
INF MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf
|
INF MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf
|
||||||
|
|
||||||
!if $(USE_LEGACY_ISA_STACK) == FALSE
|
INF OvmfPkg/SioBusDxe/SioBusDxe.inf
|
||||||
INF OvmfPkg/SioBusDxe/SioBusDxe.inf
|
|
||||||
!ifndef $(SOURCE_DEBUG_ENABLE)
|
!ifndef $(SOURCE_DEBUG_ENABLE)
|
||||||
INF MdeModulePkg/Bus/Pci/PciSioSerialDxe/PciSioSerialDxe.inf
|
INF MdeModulePkg/Bus/Pci/PciSioSerialDxe/PciSioSerialDxe.inf
|
||||||
!endif
|
|
||||||
INF MdeModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2KeyboardDxe.inf
|
|
||||||
!else
|
|
||||||
INF PcAtChipsetPkg/IsaAcpiDxe/IsaAcpi.inf
|
|
||||||
INF IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/IsaBusDxe.inf
|
|
||||||
!ifndef $(SOURCE_DEBUG_ENABLE)
|
|
||||||
INF IntelFrameworkModulePkg/Bus/Isa/IsaSerialDxe/IsaSerialDxe.inf
|
|
||||||
!endif
|
|
||||||
INF IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2keyboardDxe.inf
|
|
||||||
!endif
|
!endif
|
||||||
|
INF MdeModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2KeyboardDxe.inf
|
||||||
|
|
||||||
INF MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf
|
INF MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf
|
||||||
INF OvmfPkg/SmbiosPlatformDxe/SmbiosPlatformDxe.inf
|
INF OvmfPkg/SmbiosPlatformDxe/SmbiosPlatformDxe.inf
|
||||||
|
@ -32,7 +32,6 @@
|
|||||||
DEFINE SMM_REQUIRE = FALSE
|
DEFINE SMM_REQUIRE = FALSE
|
||||||
DEFINE TPM2_ENABLE = FALSE
|
DEFINE TPM2_ENABLE = FALSE
|
||||||
DEFINE TPM2_CONFIG_ENABLE = FALSE
|
DEFINE TPM2_CONFIG_ENABLE = FALSE
|
||||||
DEFINE USE_LEGACY_ISA_STACK = FALSE
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Network definition
|
# Network definition
|
||||||
@ -755,16 +754,9 @@
|
|||||||
#
|
#
|
||||||
# ISA Support
|
# ISA Support
|
||||||
#
|
#
|
||||||
!if $(USE_LEGACY_ISA_STACK) == FALSE
|
|
||||||
OvmfPkg/SioBusDxe/SioBusDxe.inf
|
OvmfPkg/SioBusDxe/SioBusDxe.inf
|
||||||
MdeModulePkg/Bus/Pci/PciSioSerialDxe/PciSioSerialDxe.inf
|
MdeModulePkg/Bus/Pci/PciSioSerialDxe/PciSioSerialDxe.inf
|
||||||
MdeModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2KeyboardDxe.inf
|
MdeModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2KeyboardDxe.inf
|
||||||
!else
|
|
||||||
PcAtChipsetPkg/IsaAcpiDxe/IsaAcpi.inf
|
|
||||||
IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/IsaBusDxe.inf
|
|
||||||
IntelFrameworkModulePkg/Bus/Isa/IsaSerialDxe/IsaSerialDxe.inf
|
|
||||||
IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2keyboardDxe.inf
|
|
||||||
!endif
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# SMBIOS Support
|
# SMBIOS Support
|
||||||
|
@ -260,20 +260,11 @@ INF MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf
|
|||||||
INF MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf
|
INF MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf
|
||||||
INF MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf
|
INF MdeModulePkg/Universal/MemoryTest/NullMemoryTestDxe/NullMemoryTestDxe.inf
|
||||||
|
|
||||||
!if $(USE_LEGACY_ISA_STACK) == FALSE
|
INF OvmfPkg/SioBusDxe/SioBusDxe.inf
|
||||||
INF OvmfPkg/SioBusDxe/SioBusDxe.inf
|
|
||||||
!ifndef $(SOURCE_DEBUG_ENABLE)
|
!ifndef $(SOURCE_DEBUG_ENABLE)
|
||||||
INF MdeModulePkg/Bus/Pci/PciSioSerialDxe/PciSioSerialDxe.inf
|
INF MdeModulePkg/Bus/Pci/PciSioSerialDxe/PciSioSerialDxe.inf
|
||||||
!endif
|
|
||||||
INF MdeModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2KeyboardDxe.inf
|
|
||||||
!else
|
|
||||||
INF PcAtChipsetPkg/IsaAcpiDxe/IsaAcpi.inf
|
|
||||||
INF IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/IsaBusDxe.inf
|
|
||||||
!ifndef $(SOURCE_DEBUG_ENABLE)
|
|
||||||
INF IntelFrameworkModulePkg/Bus/Isa/IsaSerialDxe/IsaSerialDxe.inf
|
|
||||||
!endif
|
|
||||||
INF IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2keyboardDxe.inf
|
|
||||||
!endif
|
!endif
|
||||||
|
INF MdeModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2KeyboardDxe.inf
|
||||||
|
|
||||||
INF MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf
|
INF MdeModulePkg/Universal/SmbiosDxe/SmbiosDxe.inf
|
||||||
INF OvmfPkg/SmbiosPlatformDxe/SmbiosPlatformDxe.inf
|
INF OvmfPkg/SmbiosPlatformDxe/SmbiosPlatformDxe.inf
|
||||||
|
Loading…
x
Reference in New Issue
Block a user