aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKonstantin Aladyshev <aladyshev22@gmail.com>2021-07-01 00:01:59 +0300
committerKonstantin Aladyshev <aladyshev22@gmail.com>2021-07-01 00:01:59 +0300
commitcc4fc5eca6da25d188ab7d4342b5c82bdb8f6029 (patch)
treeac9a2cb2e9ca7172b98373874fcc2e16e5f319db
parent20c54c6b9d00a11979d9a63e812f7999c8dcbaf9 (diff)
downloadUEFI-Lessons-cc4fc5eca6da25d188ab7d4342b5c82bdb8f6029.tar.gz
UEFI-Lessons-cc4fc5eca6da25d188ab7d4342b5c82bdb8f6029.tar.bz2
UEFI-Lessons-cc4fc5eca6da25d188ab7d4342b5c82bdb8f6029.zip
Add draft for lesson 25
Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com>
-rw-r--r--Lesson_25/README.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/Lesson_25/README.md b/Lesson_25/README.md
index 5e3da0d..88e3c18 100644
--- a/Lesson_25/README.md
+++ b/Lesson_25/README.md
@@ -16,4 +16,19 @@ Summary table:
| | its own copy | its own copy | its own copy | platfrom | platfrom |
+
+
+| | Fixed at build | Feature Flag | Patchable | Dynamic | DynamicEx |
+|---------------|-----------------------------------|-----------------------------------|------------------------------------|--------------------------------------------------------------|--------------------------------------------------------------------|
+| .dec section: | [PcdsFixedAtBuild] | [PcdsFeatureFlag] | [PcdsPatchableInModule] | [PcdsDynamic] | [PcdsDynamicEx] |
+| .dsc section: | [PcdsFixedAtBuild] | [PcdsFeatureFlag] | [PcdsPatchableInModule] | [PcdsDynamicDefault]<br>[PcdsDynamicHii]<br>[PcdsDynamicVpd] | [PcdsDynamicExDefault]<br>[PcdsDynamicExHii]<br>[PcdsDynamicExVpd] |
+| .inf section: | [FixedPcd]<br>[Pcd] | [FeaturePcd]<br>[Pcd] | [PatchPcd]<br>[Pcd] | [Pcd] | [PcdEx] |
+| Get: | PcdGet<Type><br>FixedPcdGet<Type> | PcdGetBool<br>FeaturePcdGet | PcdGet<Type><br>PatchPcdGet<Type> | PcdGet<Type> | PcdGet<Type><br>PcdGetEx<Type> |
+| Set: | - | - | PcdSet<Type>S<br>PatchPcdSet<Type> | PcdSet<Type>S | PcdSet<Type>S<br>PcdSetEx<Type>S |
+| Scope: | Every module have<br>its own copy | Every module have<br>its own copy | Every module have<br>its own copy | Global for<br>platform | Global for<br>platform |
+
+
+
+
+
<Type> = 8|16|32|64|Bool|Ptr