diff options
author | Konstantin Aladyshev <aladyshev22@gmail.com> | 2021-06-13 13:02:58 +0300 |
---|---|---|
committer | Konstantin Aladyshev <aladyshev22@gmail.com> | 2021-06-13 13:02:58 +0300 |
commit | b73ebd374b84b980682ccf712b8c27f52b6e75b4 (patch) | |
tree | 202da4d4411dc76f36f106257d40acad8de79a25 /Lesson_1 | |
parent | 0ec1822f8f6f081c92f9428bcf30a0560d61043c (diff) | |
download | UEFI-Lessons-b73ebd374b84b980682ccf712b8c27f52b6e75b4.tar.gz UEFI-Lessons-b73ebd374b84b980682ccf712b8c27f52b6e75b4.tar.bz2 UEFI-Lessons-b73ebd374b84b980682ccf712b8c27f52b6e75b4.zip |
Add link to INF specification
Diffstat (limited to 'Lesson_1')
-rw-r--r-- | Lesson_1/README.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lesson_1/README.md b/Lesson_1/README.md index 1cbd19e..2f7d3ce 100644 --- a/Lesson_1/README.md +++ b/Lesson_1/README.md @@ -74,9 +74,10 @@ vi SimplestApp/SimplestApp.inf [LibraryClasses] UefiApplicationEntryPoint ``` +Full specification for the "Module Information (INF) File" can be found under https://edk2-docs.gitbook.io/edk-ii-inf-specification/ +After the creation of the INF file we need to include our app to some package so we could build it. -After that we need to include our app to some package. We don't have our own package, so let's include it to `OvmfPkg/OvmfPkgX64.dsc` that we've compiled earlier. Add a path to our app *.inf file in the components section. ``` |