OpenCore
1.0.4
OpenCore Bootloader
|
#include <Uefi.h>
#include <IndustryStandard/Pci.h>
#include <Protocol/AudioDecode.h>
#include <Protocol/BlockIo.h>
#include <Protocol/HdaControllerInfo.h>
#include <Protocol/PciIo.h>
#include <Protocol/SimpleFileSystem.h>
#include <Library/DebugLib.h>
#include <Library/MemoryAllocationLib.h>
#include <Library/OcDebugLogLib.h>
#include <Library/OcDeviceMiscLib.h>
#include <Library/OcDriverConnectionLib.h>
#include <Library/OcHdaDevicesLib.h>
#include <Library/UefiBootServicesTableLib.h>
Go to the source code of this file.
Functions | |
EFI_STATUS | OcDisconnectDriversOnHandle (IN EFI_HANDLE Controller) |
VOID | OcUnblockUnmountedPartitions (VOID) |
VOID | OcDisconnectGraphicsDrivers (VOID) |
VOID | OcDisconnectHdaControllers (VOID) |
EFI_STATUS OcDisconnectDriversOnHandle | ( | IN EFI_HANDLE | Controller | ) |
Copyright (C) 2019, Download-Fritz. 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.
Definition at line 32 of file DriverDisconnection.c.
VOID OcDisconnectGraphicsDrivers | ( | VOID | ) |
Disconnects all graphics drivers attached to PCI I/O protcols.
Definition at line 140 of file DriverDisconnection.c.
VOID OcDisconnectHdaControllers | ( | VOID | ) |
Disconnects all HDA controllers attached to PCI I/O protcols.
Definition at line 194 of file DriverDisconnection.c.
VOID OcUnblockUnmountedPartitions | ( | VOID | ) |
Unblocks all partition handles without a File System protocol attached from driver connection, if applicable.
Definition at line 78 of file DriverDisconnection.c.