aboutsummaryrefslogtreecommitdiffstats
path: root/Lessons
diff options
context:
space:
mode:
authorKonstantin Aladyshev <aladyshev22@gmail.com>2022-03-31 19:19:35 +0300
committerKonstantin Aladyshev <aladyshev22@gmail.com>2022-03-31 19:19:35 +0300
commit9fad570f2302cd38426907d81b9b622a3aed53ff (patch)
tree634590879e21d19cb1bfa59dc3af27660e303d7b /Lessons
parent8a32d3e4f5ddf41a38fc3c1446561aa3b8ffdc5e (diff)
downloadUEFI-Lessons-9fad570f2302cd38426907d81b9b622a3aed53ff.tar.gz
UEFI-Lessons-9fad570f2302cd38426907d81b9b622a3aed53ff.tar.bz2
UEFI-Lessons-9fad570f2302cd38426907d81b9b622a3aed53ff.zip
Add information how forms end in Device Manager
Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com>
Diffstat (limited to 'Lessons')
-rw-r--r--Lessons/Lesson_59/DeviceManager.pngbin0 -> 6108 bytes
-rw-r--r--Lessons/Lesson_59/README.md55
2 files changed, 55 insertions, 0 deletions
diff --git a/Lessons/Lesson_59/DeviceManager.png b/Lessons/Lesson_59/DeviceManager.png
new file mode 100644
index 0000000..18048ab
--- /dev/null
+++ b/Lessons/Lesson_59/DeviceManager.png
Binary files differ
diff --git a/Lessons/Lesson_59/README.md b/Lessons/Lesson_59/README.md
index 04c88f6..c5bcf55 100644
--- a/Lessons/Lesson_59/README.md
+++ b/Lessons/Lesson_59/README.md
@@ -514,3 +514,58 @@ FS0:\> DisplayHIIByGuid.efi 22514099-AD3B-45EC-B14B-112EB6446DB2
```
![HII_static_form](HII_static_form.png?raw=true "HII Static Form")
+
+# See your application in the main UEFI menu
+
+If you exit to the main UEFI menu:
+```
+FS0:\> exit
+```
+
+and go the `Device Manager`, you could find our formset as one of the possible menus:
+
+![DeviceManager](DeviceManager.png?raw=true "DeviceManager")
+
+If you check this menu, you'll find out that this is indeed our driver form.
+
+The current EDKII code works in a way, that all the forms with a `classguid = EFI_HII_PLATFORM_SETUP_FORMSET_GUID` will be added to the `Device Manager` menu.
+
+So if you don't use different `classguid` in your forms it is probably easier to check your form at this menu than typing `DisplayHIIByGuid.efi <Package list GUID>.
+
+If you curious how new forms are dynamically added to the Device Manager check https://github.com/tianocore/edk2/blob/master/MdeModulePkg/Library/DeviceManagerUiLib/DeviceManager.c
+
+Here is some snippet from that file where you can see that code indeed uses `CompareGuid` to compare every formset `classguid` with `EFI_HII_PLATFORM_SETUP_FORMSET_GUID` and proceeds only if `CompareGuid` returns `TRUE`:
+```
+ //
+ // Get all the Hii handles
+ //
+ HiiHandles = HiiGetHiiHandles (NULL);
+
+ ...
+
+ //
+ // Search for formset of each class type
+ //
+ for (Index = 0; HiiHandles[Index] != NULL; Index++) {
+ Status = HiiGetFormSetFromHiiHandle (HiiHandles[Index], &Buffer, &BufferSize);
+ if (EFI_ERROR (Status)) {
+ continue;
+ }
+
+ Ptr = (UINT8 *)Buffer;
+ while (TempSize < BufferSize) {
+ TempSize += ((EFI_IFR_OP_HEADER *)Ptr)->Length;
+ if (((EFI_IFR_OP_HEADER *)Ptr)->Length <= OFFSET_OF (EFI_IFR_FORM_SET, Flags)) {
+ Ptr += ((EFI_IFR_OP_HEADER *)Ptr)->Length;
+ continue;
+ }
+
+ ClassGuidNum = (UINT8)(((EFI_IFR_FORM_SET *)Ptr)->Flags & 0x3);
+ ClassGuid = (EFI_GUID *)(VOID *)(Ptr + sizeof (EFI_IFR_FORM_SET));
+ while (ClassGuidNum-- > 0) {
+ if (CompareGuid (&gEfiHiiPlatformSetupFormsetGuid, ClassGuid) == 0) { <------- Add only formsets with
+ ClassGuid++; EFI_HII_PLATFORM_SETUP_FORMSET_GUID
+ continue;
+ }
+ ...
+```