diff options
Diffstat (limited to 'Lessons/Lesson_55/UefiLessonsPkg/AddNewLanguage')
-rw-r--r-- | Lessons/Lesson_55/UefiLessonsPkg/AddNewLanguage/AddNewLanguage.c | 71 | ||||
-rw-r--r-- | Lessons/Lesson_55/UefiLessonsPkg/AddNewLanguage/AddNewLanguage.inf | 27 |
2 files changed, 98 insertions, 0 deletions
diff --git a/Lessons/Lesson_55/UefiLessonsPkg/AddNewLanguage/AddNewLanguage.c b/Lessons/Lesson_55/UefiLessonsPkg/AddNewLanguage/AddNewLanguage.c new file mode 100644 index 0000000..cd4920d --- /dev/null +++ b/Lessons/Lesson_55/UefiLessonsPkg/AddNewLanguage/AddNewLanguage.c @@ -0,0 +1,71 @@ +/* + * Copyright (c) 2021, Konstantin Aladyshev <aladyshev22@gmail.com> + * + * SPDX-License-Identifier: MIT + */ + +#include <Library/UefiBootServicesTableLib.h> +#include <Library/UefiLib.h> + +#include <Library/MemoryAllocationLib.h> +#include <Library/BaseMemoryLib.h> +#include <Library/UefiRuntimeServicesTableLib.h> +#include <Protocol/VariablePolicy.h> + + +EFI_STATUS +EFIAPI +UefiMain ( + IN EFI_HANDLE ImageHandle, + IN EFI_SYSTEM_TABLE *SystemTable + ) +{ + EFI_STATUS Status; + + CHAR8* LanguageString; + Status = GetEfiGlobalVariable2(L"PlatformLangCodes", (VOID**)&LanguageString, NULL); + if (EFI_ERROR(Status)) { + Print(L"Error! Can't perform GetEfiGlobalVariable2, status=%r\n", Status); + return Status; + } + Print(L"Current value of the 'PlatformLangCodes' variable is '%a'\n", LanguageString); + + CHAR8* NewLanguageString = AllocatePool(AsciiStrLen(LanguageString) + AsciiStrSize(";ru-RU")); + if (NewLanguageString == NULL) { + Print(L"Error! Can't allocate size for new PlatformLangCodes variable\n"); + FreePool(LanguageString); + return EFI_OUT_OF_RESOURCES; + } + + CopyMem(NewLanguageString, LanguageString, AsciiStrLen(LanguageString)); + CopyMem(&NewLanguageString[AsciiStrLen(LanguageString)], ";ru-RU", AsciiStrSize(";ru-RU")); + + Print(L"Set 'PlatformLangCodes' variable to '%a'\n", NewLanguageString); + + Status = gRT->SetVariable ( + L"PlatformLangCodes", + &gEfiGlobalVariableGuid, + EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_RUNTIME_ACCESS, + AsciiStrSize(NewLanguageString), + NewLanguageString + ); + if (EFI_ERROR(Status)) { + Print(L"Error! Can't set PlatformLangCodes variable, status=%r\n", Status); + } + + EDKII_VARIABLE_POLICY_PROTOCOL* VariablePolicyProtocol; + Status = gBS->LocateProtocol(&gEdkiiVariablePolicyProtocolGuid, + NULL, + (VOID**)&VariablePolicyProtocol); + if (EFI_ERROR(Status)) { + Print(L"Error! Could not find Variable Policy protocol: %r\n", Status); + return Status; + } + Status = VariablePolicyProtocol->DisableVariablePolicy(); + if (EFI_ERROR(Status)) { + Print(L"Error! Can't disable VariablePolicy: %r\n", Status); + return Status; + } + + return EFI_SUCCESS; +} diff --git a/Lessons/Lesson_55/UefiLessonsPkg/AddNewLanguage/AddNewLanguage.inf b/Lessons/Lesson_55/UefiLessonsPkg/AddNewLanguage/AddNewLanguage.inf new file mode 100644 index 0000000..1a34438 --- /dev/null +++ b/Lessons/Lesson_55/UefiLessonsPkg/AddNewLanguage/AddNewLanguage.inf @@ -0,0 +1,27 @@ +## +# Copyright (c) 2021, Konstantin Aladyshev <aladyshev22@gmail.com> +# +# SPDX-License-Identifier: MIT +## + +[Defines] + INF_VERSION = 1.25 + BASE_NAME = AddNewLanguage + FILE_GUID = 6790e268-0762-4ce8-8999-2ff2131e6512 + MODULE_TYPE = UEFI_APPLICATION + VERSION_STRING = 1.0 + ENTRY_POINT = UefiMain + +[Sources] + AddNewLanguage.c + +[Packages] + MdePkg/MdePkg.dec + MdeModulePkg/MdeModulePkg.dec + +[LibraryClasses] + UefiApplicationEntryPoint + UefiLib + +[Protocols] + gEdkiiVariablePolicyProtocolGuid |