aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKonstantin Aladyshev <aladyshev22@gmail.com>2022-08-08 17:59:40 +0300
committerKonstantin Aladyshev <aladyshev22@gmail.com>2022-08-08 17:59:40 +0300
commit7ec4a23d20c61bdfabd83b1317b6525ae93f6540 (patch)
tree944ea7b5b82615414a449c37404153094b64cd13
parent0cda4601cf92ba1679ef8fbe00e3e4a77e185d2e (diff)
downloadUEFI-Lessons-7ec4a23d20c61bdfabd83b1317b6525ae93f6540.tar.gz
UEFI-Lessons-7ec4a23d20c61bdfabd83b1317b6525ae93f6540.tar.bz2
UEFI-Lessons-7ec4a23d20c61bdfabd83b1317b6525ae93f6540.zip
Correct hex formatting in L25
Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com>
-rw-r--r--Lessons/Lesson_25/README.md32
-rw-r--r--Lessons/Lesson_25/UefiLessonsPkg/PCDLesson/PCDLesson.c8
-rw-r--r--UefiLessonsPkg/PCDLesson/PCDLesson.c8
3 files changed, 24 insertions, 24 deletions
diff --git a/Lessons/Lesson_25/README.md b/Lessons/Lesson_25/README.md
index ccbcc90..1281e0a 100644
--- a/Lessons/Lesson_25/README.md
+++ b/Lessons/Lesson_25/README.md
@@ -278,9 +278,9 @@ Now let's try to access the PCD, this is done via `PcdGetEx32`/`PcdSetEx32S` fun
```
As you can see, API in this case a little bit different. The `Guid` in these defines is a pointer to the GUID, so we need to use `&gUefiLessonsPkgTokenSpaceGuid` in our case. Here is the code:
```
-Print(L"PcdDynamicExInt32=%x\n", PcdGetEx32(&gUefiLessonsPkgTokenSpaceGuid, PcdDynamicExInt32));
+Print(L"PcdDynamicExInt32=0x%x\n", PcdGetEx32(&gUefiLessonsPkgTokenSpaceGuid, PcdDynamicExInt32));
PcdSet32S(gUefiLessonsPkgTokenSpaceGuid, PcdDynamicExInt32, 0x77777777);
-Print(L"PcdDynamicExInt32=%x\n", PcdGetEx32(&gUefiLessonsPkgTokenSpaceGuid, PcdDynamicExInt32));
+Print(L"PcdDynamicExInt32=0x%x\n", PcdGetEx32(&gUefiLessonsPkgTokenSpaceGuid, PcdDynamicExInt32));
```
We don't need to do anything to import `gUefiLessonsPkgTokenSpaceGuid` as it is already in its `AutoGen.c` file:
```
@@ -309,15 +309,15 @@ The behaviour is similar to the Dynamic PCD. For the first time you'll get initi
```
FS0:\> PCDLesson.efi
...
-PcdDynamicExInt32=BABEBABE
-PcdDynamicExInt32=77777777
+PcdDynamicExInt32=0xBABEBABE
+PcdDynamicExInt32=0x77777777
```
But since the program updates PCD, at the next launches it would start with the updated value:
```
FS0:\> PCDLesson.efi
...
-PcdDynamicExInt32=77777777
-PcdDynamicExInt32=77777777
+PcdDynamicExInt32=0x77777777
+PcdDynamicExInt32=0x77777777
```
And QEMU re-launch takes things to the start.
@@ -325,9 +325,9 @@ And QEMU re-launch takes things to the start.
It is important to notice that the `PcdGet32`/`PcdSet32S` functions are not specific Dynamic API functions. These functons are generic API that can be used with all types of PCD including the Dynamic Ex PCDs. For an example add this code to our application:
```
-Print(L"PcdDynamicExInt32=%x\n", PcdGet32(PcdDynamicExInt32));
+Print(L"PcdDynamicExInt32=0x%x\n", PcdGet32(PcdDynamicExInt32));
PcdSet32S(PcdDynamicExInt32, 0x88888888);
-Print(L"PcdDynamicExInt32=%x\n", PcdGet32(PcdDynamicExInt32));
+Print(L"PcdDynamicExInt32=0x%x\n", PcdGet32(PcdDynamicExInt32));
```
If you are interested how it works check `Build/OvmfX64/RELEASE_GCC5/X64/UefiLessonsPkg/PCDLesson/PCDLesson/DEBUG/AutoGen.h`:
@@ -355,10 +355,10 @@ You can rebuild our application and verify that it still works:
```
FS0:\> PCDLesson.efi
...
-PcdDynamicExInt32=BABEBABE
-PcdDynamicExInt32=77777777
-PcdDynamicExInt32=77777777
-PcdDynamicExInt32=88888888
+PcdDynamicExInt32=0xBABEBABE
+PcdDynamicExInt32=0x77777777
+PcdDynamicExInt32=0x77777777
+PcdDynamicExInt32=0x88888888
```
# `PCD_DYNAMIC_AS_DYNAMICEX`
@@ -746,10 +746,10 @@ FS0:\> PCDLesson.efi
...
PcdDynamicInt32=0xCAFECAFE
PcdDynamicInt32=0xBEEFBEEF
-PcdDynamicExInt32=BABEBABE
-PcdDynamicExInt32=77777777
-PcdDynamicExInt32=77777777
-PcdDynamicExInt32=88888888
+PcdDynamicExInt32=0xBABEBABE
+PcdDynamicExInt32=0x77777777
+PcdDynamicExInt32=0x77777777
+PcdDynamicExInt32=0x88888888
```
# `PCD_INFO_GENERATION`
diff --git a/Lessons/Lesson_25/UefiLessonsPkg/PCDLesson/PCDLesson.c b/Lessons/Lesson_25/UefiLessonsPkg/PCDLesson/PCDLesson.c
index a3ecfeb..a4bfd3f 100644
--- a/Lessons/Lesson_25/UefiLessonsPkg/PCDLesson/PCDLesson.c
+++ b/Lessons/Lesson_25/UefiLessonsPkg/PCDLesson/PCDLesson.c
@@ -65,12 +65,12 @@ UefiMain (
Print(L"PcdDynamicInt32 token is unassigned\n");
}
- Print(L"PcdDynamicExInt32=%x\n", PcdGetEx32(&gUefiLessonsPkgTokenSpaceGuid, PcdDynamicExInt32));
+ Print(L"PcdDynamicExInt32=0x%x\n", PcdGetEx32(&gUefiLessonsPkgTokenSpaceGuid, PcdDynamicExInt32));
PcdSetEx32S(&gUefiLessonsPkgTokenSpaceGuid, PcdDynamicExInt32, 0x77777777);
- Print(L"PcdDynamicExInt32=%x\n", PcdGetEx32(&gUefiLessonsPkgTokenSpaceGuid, PcdDynamicExInt32));
+ Print(L"PcdDynamicExInt32=0x%x\n", PcdGetEx32(&gUefiLessonsPkgTokenSpaceGuid, PcdDynamicExInt32));
- Print(L"PcdDynamicExInt32=%x\n", PcdGet32(PcdDynamicExInt32));
+ Print(L"PcdDynamicExInt32=0x%x\n", PcdGet32(PcdDynamicExInt32));
PcdSet32S(PcdDynamicExInt32, 0x88888888);
- Print(L"PcdDynamicExInt32=%x\n", PcdGet32(PcdDynamicExInt32));
+ Print(L"PcdDynamicExInt32=0x%x\n", PcdGet32(PcdDynamicExInt32));
return EFI_SUCCESS;
}
diff --git a/UefiLessonsPkg/PCDLesson/PCDLesson.c b/UefiLessonsPkg/PCDLesson/PCDLesson.c
index a3ecfeb..a4bfd3f 100644
--- a/UefiLessonsPkg/PCDLesson/PCDLesson.c
+++ b/UefiLessonsPkg/PCDLesson/PCDLesson.c
@@ -65,12 +65,12 @@ UefiMain (
Print(L"PcdDynamicInt32 token is unassigned\n");
}
- Print(L"PcdDynamicExInt32=%x\n", PcdGetEx32(&gUefiLessonsPkgTokenSpaceGuid, PcdDynamicExInt32));
+ Print(L"PcdDynamicExInt32=0x%x\n", PcdGetEx32(&gUefiLessonsPkgTokenSpaceGuid, PcdDynamicExInt32));
PcdSetEx32S(&gUefiLessonsPkgTokenSpaceGuid, PcdDynamicExInt32, 0x77777777);
- Print(L"PcdDynamicExInt32=%x\n", PcdGetEx32(&gUefiLessonsPkgTokenSpaceGuid, PcdDynamicExInt32));
+ Print(L"PcdDynamicExInt32=0x%x\n", PcdGetEx32(&gUefiLessonsPkgTokenSpaceGuid, PcdDynamicExInt32));
- Print(L"PcdDynamicExInt32=%x\n", PcdGet32(PcdDynamicExInt32));
+ Print(L"PcdDynamicExInt32=0x%x\n", PcdGet32(PcdDynamicExInt32));
PcdSet32S(PcdDynamicExInt32, 0x88888888);
- Print(L"PcdDynamicExInt32=%x\n", PcdGet32(PcdDynamicExInt32));
+ Print(L"PcdDynamicExInt32=0x%x\n", PcdGet32(PcdDynamicExInt32));
return EFI_SUCCESS;
}