diff options
| author | Konstantin Aladyshev <aladyshev22@gmail.com> | 2021-07-10 00:04:40 +0300 | 
|---|---|---|
| committer | Konstantin Aladyshev <aladyshev22@gmail.com> | 2021-07-10 00:04:40 +0300 | 
| commit | 6064c1e48b622f53538f4df9bdd402c607a87d51 (patch) | |
| tree | 93d3c937b9568568307fd2ff7053a30c538ad72a /Lessons/Lesson_20/UefiLessonsPkg/PCDLesson | |
| parent | a9c375c80c3505be794ec2b5d5bb90de27ef0d42 (diff) | |
| download | UEFI-Lessons-6064c1e48b622f53538f4df9bdd402c607a87d51.tar.gz UEFI-Lessons-6064c1e48b622f53538f4df9bdd402c607a87d51.tar.bz2 UEFI-Lessons-6064c1e48b622f53538f4df9bdd402c607a87d51.zip | |
Move lessons to separate folder
Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com>
Diffstat (limited to 'Lessons/Lesson_20/UefiLessonsPkg/PCDLesson')
| -rw-r--r-- | Lessons/Lesson_20/UefiLessonsPkg/PCDLesson/PCDLesson.c | 15 | ||||
| -rw-r--r-- | Lessons/Lesson_20/UefiLessonsPkg/PCDLesson/PCDLesson.inf | 22 | 
2 files changed, 37 insertions, 0 deletions
| diff --git a/Lessons/Lesson_20/UefiLessonsPkg/PCDLesson/PCDLesson.c b/Lessons/Lesson_20/UefiLessonsPkg/PCDLesson/PCDLesson.c new file mode 100644 index 0000000..7ed3081 --- /dev/null +++ b/Lessons/Lesson_20/UefiLessonsPkg/PCDLesson/PCDLesson.c @@ -0,0 +1,15 @@ +#include <Library/UefiBootServicesTableLib.h> +#include <Library/UefiLib.h> + +#include <Library/PcdLib.h> + +EFI_STATUS +EFIAPI +UefiMain ( +  IN EFI_HANDLE        ImageHandle, +  IN EFI_SYSTEM_TABLE  *SystemTable +  ) +{ +  Print(L"PcdMyVar32=%d\n", FixedPcdGet32(PcdMyVar32)); +  return EFI_SUCCESS; +} diff --git a/Lessons/Lesson_20/UefiLessonsPkg/PCDLesson/PCDLesson.inf b/Lessons/Lesson_20/UefiLessonsPkg/PCDLesson/PCDLesson.inf new file mode 100644 index 0000000..11dafe9 --- /dev/null +++ b/Lessons/Lesson_20/UefiLessonsPkg/PCDLesson/PCDLesson.inf @@ -0,0 +1,22 @@ +[Defines] +  INF_VERSION                    = 1.25 +  BASE_NAME                      = PCDLesson +  FILE_GUID                      = 8c1a6b71-0c4b-4497-aaad-07404edf142c +  MODULE_TYPE                    = UEFI_APPLICATION +  VERSION_STRING                 = 1.0 +  ENTRY_POINT                    = UefiMain + +[Sources] +  PCDLesson.c + +[Packages] +  MdePkg/MdePkg.dec +  UefiLessonsPkg/UefiLessonsPkg.dec   + +[LibraryClasses] +  UefiApplicationEntryPoint +  UefiLib + +[FixedPcd] +  gUefiLessonsPkgTokenSpaceGuid.PcdMyVar32  + | 
