/** @file Control OpenCore instance. Copyright (c) 2020, vit9696. 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. **/ #include #include #include #include #include #include #include #include #include EFI_STATUS EFIAPI UefiMain ( IN EFI_HANDLE ImageHandle, IN EFI_SYSTEM_TABLE *SystemTable ) { EFI_STATUS Status; UINTN Argc; CHAR16 **Argv; OC_FIRMWARE_RUNTIME_PROTOCOL *FwRuntime; OC_FWRT_CONFIG Config; Status = GetArguments (&Argc, &Argv); if (!EFI_ERROR (Status) && (Argc == 2)) { Status = gBS->LocateProtocol ( &gOcFirmwareRuntimeProtocolGuid, NULL, (VOID **)&FwRuntime ); if (EFI_ERROR (Status)) { Print (L"FwRuntime protocol is unavailable - %r\n", Status); return EFI_SUCCESS; } if (OcStriCmp (Argv[1], L"disable") == 0) { ZeroMem (&Config, sizeof (Config)); FwRuntime->SetOverride (&Config); return EFI_SUCCESS; } if (OcStriCmp (Argv[1], L"restore") == 0) { FwRuntime->SetOverride (NULL); return EFI_SUCCESS; } } Print (L"Usage: OpenControl \n"); return EFI_SUCCESS; }