mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-12-25 16:37:42 +01:00
ignore OcQuirks.efi if present
Signed-off-by: SergeySlice <sergey.slice@gmail.com>
This commit is contained in:
parent
3a2d6f14c7
commit
f4b3445135
@ -748,7 +748,7 @@ DEFINE EXIT_USBKB_FLAG = -DEXIT_USBKB
|
|||||||
!endif
|
!endif
|
||||||
|
|
||||||
|
|
||||||
DEFINE BUILD_OPTIONS=-DCLOVER_BUILD $(VBIOS_PATCH_CLOVEREFI_FLAG) $(ONLY_SATA_0_FLAG) $(BLOCKIO_FLAG) $(NOUSB_FLAG) $(NOUDMA_FLAG) $(AMD_FLAG) $(SECURE_BOOT_FLAG) $(ANDX86_FLAG) $(PS2MOUSE_LEGACYBOOT_FLAG) $(DEBUG_ON_SERIAL_PORT_FLAG) $(EXIT_USBKB_FLAG)
|
DEFINE BUILD_OPTIONS=-DMDEPKG_NDEBUG -DCLOVER_BUILD $(VBIOS_PATCH_CLOVEREFI_FLAG) $(ONLY_SATA_0_FLAG) $(BLOCKIO_FLAG) $(NOUSB_FLAG) $(NOUDMA_FLAG) $(AMD_FLAG) $(SECURE_BOOT_FLAG) $(ANDX86_FLAG) $(PS2MOUSE_LEGACYBOOT_FLAG) $(DEBUG_ON_SERIAL_PORT_FLAG) $(EXIT_USBKB_FLAG)
|
||||||
|
|
||||||
#MSFT:*_*_*_CC_FLAGS = /FAcs /FR$(@R).SBR /wd4701 /wd4703 $(BUILD_OPTIONS)
|
#MSFT:*_*_*_CC_FLAGS = /FAcs /FR$(@R).SBR /wd4701 /wd4703 $(BUILD_OPTIONS)
|
||||||
MSFT:*_*_*_CC_FLAGS = /FAcs $(BUILD_OPTIONS) -Dinline=__inline /Zi -D DISABLE_NEW_DEPRECATED_INTERFACES -D OC_TARGET_DEBUG
|
MSFT:*_*_*_CC_FLAGS = /FAcs $(BUILD_OPTIONS) -Dinline=__inline /Zi -D DISABLE_NEW_DEPRECATED_INTERFACES -D OC_TARGET_DEBUG
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -568,7 +568,7 @@ VOID CheckEmptyFB()
|
|||||||
|
|
||||||
VOID LOADER_ENTRY::StartLoader()
|
VOID LOADER_ENTRY::StartLoader()
|
||||||
{
|
{
|
||||||
if ( OSVersion.startWith("11") ) {
|
if (1 || OSVersion.startWith("11") ) {
|
||||||
StartLoader11();
|
StartLoader11();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -1544,6 +1544,9 @@ static VOID ScanDriverDir(IN CONST CHAR16 *Path, OUT EFI_HANDLE **DriversToConne
|
|||||||
if (Skip) {
|
if (Skip) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
if (StrStr(DirEntry->FileName, L"OcQuirks") != NULL) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
{
|
{
|
||||||
size_t i;
|
size_t i;
|
||||||
// either AptioMem, AptioFix* or LowMemFix exclusively
|
// either AptioMem, AptioFix* or LowMemFix exclusively
|
||||||
|
Loading…
Reference in New Issue
Block a user