OpenCore
1.0.4
OpenCore Bootloader
|
Go to the source code of this file.
Functions | |
EFI_STATUS | OcRegisterDriversToHighestPriority (IN EFI_HANDLE *PriorityDrivers) |
VOID | OcUnblockUnmountedPartitions (VOID) |
VOID | OcDisconnectGraphicsDrivers (VOID) |
VOID | OcDisconnectHdaControllers (VOID) |
EFI_STATUS | OcDisconnectDriversOnHandle (IN EFI_HANDLE Controller) |
EFI_STATUS | OcConnectDrivers (VOID) |
Copyright (C) 2019, vit9696. All rights reserved.
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 in file OcDriverConnectionLib.h.
EFI_STATUS OcConnectDrivers | ( | VOID | ) |
Connect effectively all drivers to effectively all handles.
EFI_SUCCESS | on success. |
Definition at line 199 of file OcDriverConnectionLib.c.
EFI_STATUS OcDisconnectDriversOnHandle | ( | IN EFI_HANDLE | Controller | ) |
Disconnect effectively all drivers attached at handle.
[in] | Controller | Handle to disconnect the drivers from. |
EFI_SUCCESS | on success. |
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.
EFI_STATUS OcRegisterDriversToHighestPriority | ( | IN EFI_HANDLE * | PriorityDrivers | ) |
Registers given PriorityDrivers to highest priority during connecting controllers. Does this by installing custom EFI_PLATFORM_DRIVER_OVERRIDE_PROTOCOL or by overriding existing EFI_PLATFORM_DRIVER_OVERRIDE_PROTOCOL.GetDriver.
[in] | PriorityDrivers | NULL-terminated list of drivers to prioritise. |
EFI_SUCCESS | on successful override or installation. |
Definition at line 166 of file OcDriverConnectionLib.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.