diff options
author | Konstantin Aladyshev <aladyshev22@gmail.com> | 2022-09-23 18:03:02 +0300 |
---|---|---|
committer | Konstantin Aladyshev <aladyshev22@gmail.com> | 2022-09-23 18:03:02 +0300 |
commit | 31f41214bdeebda26e39daf776be8cb646d66666 (patch) | |
tree | 9b683dc408ea26b29fc5cc5dff4c0dcf5c184bce /UefiLessonsPkg/HIIConfig/HIIConfig.inf | |
parent | cd5821d17e5988fcc214f34e71bf1c89ffc85e6d (diff) | |
download | UEFI-Lessons-31f41214bdeebda26e39daf776be8cb646d66666.tar.gz UEFI-Lessons-31f41214bdeebda26e39daf776be8cb646d66666.tar.bz2 UEFI-Lessons-31f41214bdeebda26e39daf776be8cb646d66666.zip |
Add source code for UEFI Configuration language lessons
Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com>
Diffstat (limited to 'UefiLessonsPkg/HIIConfig/HIIConfig.inf')
-rw-r--r-- | UefiLessonsPkg/HIIConfig/HIIConfig.inf | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/UefiLessonsPkg/HIIConfig/HIIConfig.inf b/UefiLessonsPkg/HIIConfig/HIIConfig.inf new file mode 100644 index 0000000..6a1f99e --- /dev/null +++ b/UefiLessonsPkg/HIIConfig/HIIConfig.inf @@ -0,0 +1,27 @@ +[Defines] + INF_VERSION = 1.25 + BASE_NAME = HIIConfig + FILE_GUID = 417bf8bf-05b6-4cb5-b6e1-ed41c1fc971d + MODULE_TYPE = UEFI_APPLICATION + VERSION_STRING = 1.0 + ENTRY_POINT = ShellCEntryLib + +[Sources] + HIIConfig.c + +[Packages] + MdePkg/MdePkg.dec + MdeModulePkg/MdeModulePkg.dec + +[LibraryClasses] + ShellCEntryLib + UefiLib + DevicePathLib + HiiLib + +[Protocols] + gEfiHiiConfigRoutingProtocolGuid + +[Pcd] + gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize + |