diff options
Diffstat (limited to 'UefiLessonsPkg/PasswordFormWithHash/PasswordFormWithHash.inf')
-rw-r--r-- | UefiLessonsPkg/PasswordFormWithHash/PasswordFormWithHash.inf | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/UefiLessonsPkg/PasswordFormWithHash/PasswordFormWithHash.inf b/UefiLessonsPkg/PasswordFormWithHash/PasswordFormWithHash.inf new file mode 100644 index 0000000..02674b4 --- /dev/null +++ b/UefiLessonsPkg/PasswordFormWithHash/PasswordFormWithHash.inf @@ -0,0 +1,34 @@ +## +# Copyright (c) 2024, Konstantin Aladyshev <aladyshev22@gmail.com> +# +# SPDX-License-Identifier: MIT +## + +[Defines] + INF_VERSION = 1.25 + BASE_NAME = PasswordFormWithHash + FILE_GUID = 6dfb156a-ec61-47d2-841b-f739084add1d + MODULE_TYPE = UEFI_DRIVER + VERSION_STRING = 1.0 + ENTRY_POINT = PasswordFormWithHashEntryPoint + UNLOAD_IMAGE = PasswordFormWithHashUnload + +[Sources] + PasswordFormWithHash.c + Strings.uni + Form.vfr + +[Packages] + MdePkg/MdePkg.dec + MdeModulePkg/MdeModulePkg.dec + +[LibraryClasses] + UefiDriverEntryPoint + UefiLib + UefiHiiServicesLib + HiiLib + +[Protocols] + gEfiHiiConfigAccessProtocolGuid + gEfiHash2ServiceBindingProtocolGuid + gEfiHash2ProtocolGuid |