mirror of https://github.com/acidanthera/audk.git
UefiPayloadPkg: Add a macro to enable or diable the serial driver.
This patch doesn't change the default behavior. Reviewed-by: Guo Dong <guo.dong@intel.com> Reviewed-by: Ray Ni <ray.ni@intel.com> Cc: Maurice Ma <maurice.ma@intel.com> Cc: Benjamin You <benjamin.you@intel.com> Signed-off-by: Zhiguang Liu <zhiguang.liu@intel.com>
This commit is contained in:
parent
ac6e5d6b41
commit
672bd1c711
|
@ -98,6 +98,8 @@
|
||||||
DEFINE RTC_INDEX_REGISTER = 0x70
|
DEFINE RTC_INDEX_REGISTER = 0x70
|
||||||
DEFINE RTC_TARGET_REGISTER = 0x71
|
DEFINE RTC_TARGET_REGISTER = 0x71
|
||||||
|
|
||||||
|
DEFINE SERIAL_DRIVER_ENABLE = TRUE
|
||||||
|
|
||||||
[BuildOptions]
|
[BuildOptions]
|
||||||
*_*_*_CC_FLAGS = -D DISABLE_NEW_DEPRECATED_INTERFACES
|
*_*_*_CC_FLAGS = -D DISABLE_NEW_DEPRECATED_INTERFACES
|
||||||
GCC:*_UNIXGCC_*_CC_FLAGS = -DMDEPKG_NDEBUG
|
GCC:*_UNIXGCC_*_CC_FLAGS = -DMDEPKG_NDEBUG
|
||||||
|
@ -536,7 +538,9 @@
|
||||||
#
|
#
|
||||||
# ISA Support
|
# ISA Support
|
||||||
#
|
#
|
||||||
|
!if $(SERIAL_DRIVER_ENABLE) == TRUE
|
||||||
MdeModulePkg/Universal/SerialDxe/SerialDxe.inf
|
MdeModulePkg/Universal/SerialDxe/SerialDxe.inf
|
||||||
|
!endif
|
||||||
!if $(PS2_KEYBOARD_ENABLE) == TRUE
|
!if $(PS2_KEYBOARD_ENABLE) == TRUE
|
||||||
OvmfPkg/SioBusDxe/SioBusDxe.inf
|
OvmfPkg/SioBusDxe/SioBusDxe.inf
|
||||||
MdeModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2KeyboardDxe.inf
|
MdeModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2KeyboardDxe.inf
|
||||||
|
|
|
@ -136,7 +136,9 @@ INF MdeModulePkg/Bus/Pci/PciHostBridgeDxe/PciHostBridgeDxe.inf
|
||||||
#
|
#
|
||||||
# ISA Support
|
# ISA Support
|
||||||
#
|
#
|
||||||
|
!if $(SERIAL_DRIVER_ENABLE) == TRUE
|
||||||
INF MdeModulePkg/Universal/SerialDxe/SerialDxe.inf
|
INF MdeModulePkg/Universal/SerialDxe/SerialDxe.inf
|
||||||
|
!endif
|
||||||
!if $(PS2_KEYBOARD_ENABLE) == TRUE
|
!if $(PS2_KEYBOARD_ENABLE) == TRUE
|
||||||
INF OvmfPkg/SioBusDxe/SioBusDxe.inf
|
INF OvmfPkg/SioBusDxe/SioBusDxe.inf
|
||||||
INF MdeModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2KeyboardDxe.inf
|
INF MdeModulePkg/Bus/Isa/Ps2KeyboardDxe/Ps2KeyboardDxe.inf
|
||||||
|
|
Loading…
Reference in New Issue