mirror of
https://github.com/acidanthera/OpenCorePkg.git
synced 2025-12-08 19:25:01 +00:00
* BiosVideo: Initial Intel patching functions * BiosVideo: Implement patch protocol * BiosVideo: Read EDID from VBE * BiosVideo: Fix previous commits * OpenDuet: Fix Windows builds * BiosVideo: Fix MSVC warnings * BiosVideo: Pull max resolution from EDID * BiosVideo: Patch based on PCI vendor ID * BiosVideo: Fix more MSVC warnings * OcMiscLib: Try to fix OpenDuet MSVC compilation * BiosVideo: Fix incorrect return status * OpenDuet: Create OcDebugLogLibNull library * Protocol: Rename OC_VBIOS_PATCH_PROTOCOL to OC_FORCE_RESOLUTION_PROTOCOL * OpenCore: Add ForceResolution option * BiosVideo: Fix consistency of height/width parameters * Includes: Mark height/width as optional * BiosVideo: Cleanup misc issues * Docs: Add support note
53 lines
1.2 KiB
INI
Executable File
53 lines
1.2 KiB
INI
Executable File
## @file
|
|
#
|
|
# Component description file for OcMisclibrary.
|
|
#
|
|
# Copyright (C) 2016 - 2018, The HermitCrabs Lab. All rights reserved.<BR>
|
|
#
|
|
# All rights reserved.
|
|
#
|
|
# This program and the accompanying materials
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
|
# which accompanies this distribution. The full text of the license may be found at
|
|
# http://opensource.org/licenses/bsd-license.php
|
|
#
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
#
|
|
##
|
|
|
|
[Defines]
|
|
INF_VERSION = 0x00010005
|
|
BASE_NAME = OcMiscLib
|
|
FILE_GUID = E9DF6F29-95AC-429A-8E42-FCE1F5B81148
|
|
MODULE_TYPE = BASE
|
|
VERSION_STRING = 1.0
|
|
LIBRARY_CLASS = OcMiscLib|PEIM DXE_DRIVER DXE_RUNTIME_DRIVER UEFI_DRIVER UEFI_APPLICATION DXE_SMM_DRIVER
|
|
|
|
# VALID_ARCHITECTURES = IA32 X64
|
|
|
|
[Packages]
|
|
OpenCorePkg/OpenCorePkg.dec
|
|
MdePkg/MdePkg.dec
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
|
|
[Protocols]
|
|
gEfiPciIoProtocolGuid
|
|
gEfiShellParametersProtocolGuid
|
|
gEfiLoadedImageProtocolGuid
|
|
|
|
[LibraryClasses]
|
|
BaseLib
|
|
IoLib
|
|
UefiLib
|
|
OcFileLib
|
|
OcGuardLib
|
|
OcStringLib
|
|
|
|
[Sources]
|
|
DataPatcher.c
|
|
DirectReset.c
|
|
ReleaseUsbOwnership.c
|
|
ProtocolSupport.c
|
|
Math.c
|