mirror of https://github.com/acidanthera/audk.git
Vlv2TbltDevicePkg:Fix build and boot failure of Minnowboard Max platform.
Remove the duplicated IScsiDxe driver from FDF; Add required shell libraries; Update SYSTEM_CONFIGURATION data structure. Test: Install and boot Windows 10. Cc: Zailiang Sun <zailiang.sun@intel.com> Cc: Yi Qian <yi.qian@intel.com> Cc: Michael Kinney <michael.d.kinney@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: David Wei <david.wei@intel.com>
This commit is contained in:
parent
a90c7df7ed
commit
59e323822f
|
@ -1,6 +1,6 @@
|
||||||
/** @file
|
/** @file
|
||||||
|
|
||||||
Copyright (c) 2004 - 2016, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2004 - 2018, Intel Corporation. All rights reserved.<BR>
|
||||||
|
|
||||||
|
|
||||||
This program and the accompanying materials are licensed and made available under
|
This program and the accompanying materials are licensed and made available under
|
||||||
|
@ -1310,6 +1310,9 @@ typedef struct {
|
||||||
UINT8 GpioWakeCapability;
|
UINT8 GpioWakeCapability;
|
||||||
UINT8 RtcBattery;
|
UINT8 RtcBattery;
|
||||||
UINT8 LpeAudioReportedByDSDT;
|
UINT8 LpeAudioReportedByDSDT;
|
||||||
|
|
||||||
|
UINT8 Uart1Int3511Com; // Report UART1 as COM with _HID INT3511
|
||||||
|
CHAR16 SystemUuid[37];
|
||||||
|
|
||||||
} SYSTEM_CONFIGURATION;
|
} SYSTEM_CONFIGURATION;
|
||||||
#pragma pack()
|
#pragma pack()
|
||||||
|
|
|
@ -743,7 +743,6 @@ FILE FREEFORM = 878AC2CC-5343-46F2-B563-51F89DAF56BA {
|
||||||
INF MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Dxe.inf
|
INF MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Dxe.inf
|
||||||
INF NetworkPkg/UefiPxeBcDxe/UefiPxeBcDxe.inf
|
INF NetworkPkg/UefiPxeBcDxe/UefiPxeBcDxe.inf
|
||||||
INF NetworkPkg/TcpDxe/TcpDxe.inf
|
INF NetworkPkg/TcpDxe/TcpDxe.inf
|
||||||
INF NetworkPkg/IScsiDxe/IScsiDxe.inf
|
|
||||||
!if $(NETWORK_IP6_ENABLE) == TRUE
|
!if $(NETWORK_IP6_ENABLE) == TRUE
|
||||||
INF NetworkPkg/Ip6Dxe/Ip6Dxe.inf
|
INF NetworkPkg/Ip6Dxe/Ip6Dxe.inf
|
||||||
INF NetworkPkg/Dhcp6Dxe/Dhcp6Dxe.inf
|
INF NetworkPkg/Dhcp6Dxe/Dhcp6Dxe.inf
|
||||||
|
|
|
@ -699,7 +699,6 @@ FILE FREEFORM = 878AC2CC-5343-46F2-B563-51F89DAF56BA {
|
||||||
INF MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Dxe.inf
|
INF MdeModulePkg/Universal/Network/Mtftp4Dxe/Mtftp4Dxe.inf
|
||||||
INF NetworkPkg/UefiPxeBcDxe/UefiPxeBcDxe.inf
|
INF NetworkPkg/UefiPxeBcDxe/UefiPxeBcDxe.inf
|
||||||
INF NetworkPkg/TcpDxe/TcpDxe.inf
|
INF NetworkPkg/TcpDxe/TcpDxe.inf
|
||||||
INF NetworkPkg/IScsiDxe/IScsiDxe.inf
|
|
||||||
!if $(NETWORK_IP6_ENABLE) == TRUE
|
!if $(NETWORK_IP6_ENABLE) == TRUE
|
||||||
INF NetworkPkg/Ip6Dxe/Ip6Dxe.inf
|
INF NetworkPkg/Ip6Dxe/Ip6Dxe.inf
|
||||||
INF NetworkPkg/Dhcp6Dxe/Dhcp6Dxe.inf
|
INF NetworkPkg/Dhcp6Dxe/Dhcp6Dxe.inf
|
||||||
|
|
|
@ -283,6 +283,8 @@
|
||||||
!endif
|
!endif
|
||||||
ShellCEntryLib|ShellPkg/Library/UefiShellCEntryLib/UefiShellCEntryLib.inf
|
ShellCEntryLib|ShellPkg/Library/UefiShellCEntryLib/UefiShellCEntryLib.inf
|
||||||
ShellLib|ShellPkg/Library/UefiShellLib/UefiShellLib.inf
|
ShellLib|ShellPkg/Library/UefiShellLib/UefiShellLib.inf
|
||||||
|
ShellCommandLib|ShellPkg/Library/UefiShellCommandLib/UefiShellCommandLib.inf
|
||||||
|
HandleParsingLib|ShellPkg/Library/UefiHandleParsingLib/UefiHandleParsingLib.inf
|
||||||
FileHandleLib|MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf
|
FileHandleLib|MdePkg/Library/UefiFileHandleLib/UefiFileHandleLib.inf
|
||||||
SortLib|MdeModulePkg/Library/UefiSortLib/UefiSortLib.inf
|
SortLib|MdeModulePkg/Library/UefiSortLib/UefiSortLib.inf
|
||||||
!if $(FTPM_ENABLE) == TRUE || $(NETWORK_ISCSI_ENABLE) == TRUE
|
!if $(FTPM_ENABLE) == TRUE || $(NETWORK_ISCSI_ENABLE) == TRUE
|
||||||
|
|
Loading…
Reference in New Issue