aboutsummaryrefslogtreecommitdiffstats
path: root/Lessons/Lesson_11
diff options
context:
space:
mode:
Diffstat (limited to 'Lessons/Lesson_11')
-rw-r--r--Lessons/Lesson_11/UefiLessonsPkg/HelloWorld/HelloWorld.c6
-rw-r--r--Lessons/Lesson_11/UefiLessonsPkg/HelloWorld/HelloWorld.inf6
-rw-r--r--Lessons/Lesson_11/UefiLessonsPkg/ImageHandle/ImageHandle.c6
-rw-r--r--Lessons/Lesson_11/UefiLessonsPkg/ImageHandle/ImageHandle.inf6
-rw-r--r--Lessons/Lesson_11/UefiLessonsPkg/ImageInfo/ImageInfo.c6
-rw-r--r--Lessons/Lesson_11/UefiLessonsPkg/ImageInfo/ImageInfo.inf6
-rw-r--r--Lessons/Lesson_11/UefiLessonsPkg/MemoryInfo/MemoryInfo.c6
-rw-r--r--Lessons/Lesson_11/UefiLessonsPkg/MemoryInfo/MemoryInfo.inf6
-rw-r--r--Lessons/Lesson_11/UefiLessonsPkg/SimplestApp/SimplestApp.c6
-rw-r--r--Lessons/Lesson_11/UefiLessonsPkg/SimplestApp/SimplestApp.inf6
-rw-r--r--Lessons/Lesson_11/UefiLessonsPkg/UefiLessonsPkg.dsc6
11 files changed, 66 insertions, 0 deletions
diff --git a/Lessons/Lesson_11/UefiLessonsPkg/HelloWorld/HelloWorld.c b/Lessons/Lesson_11/UefiLessonsPkg/HelloWorld/HelloWorld.c
index 1f05899..1ea17db 100644
--- a/Lessons/Lesson_11/UefiLessonsPkg/HelloWorld/HelloWorld.c
+++ b/Lessons/Lesson_11/UefiLessonsPkg/HelloWorld/HelloWorld.c
@@ -1,3 +1,9 @@
+/*
+ * Copyright (c) 2021, Konstantin Aladyshev <aladyshev22@gmail.com>
+ *
+ * SPDX-License-Identifier: MIT
+ */
+
#include <Library/UefiBootServicesTableLib.h>
#include <Library/UefiLib.h>
diff --git a/Lessons/Lesson_11/UefiLessonsPkg/HelloWorld/HelloWorld.inf b/Lessons/Lesson_11/UefiLessonsPkg/HelloWorld/HelloWorld.inf
index d65ca2e..b448d51 100644
--- a/Lessons/Lesson_11/UefiLessonsPkg/HelloWorld/HelloWorld.inf
+++ b/Lessons/Lesson_11/UefiLessonsPkg/HelloWorld/HelloWorld.inf
@@ -1,3 +1,9 @@
+##
+# Copyright (c) 2021, Konstantin Aladyshev <aladyshev22@gmail.com>
+#
+# SPDX-License-Identifier: MIT
+##
+
[Defines]
INF_VERSION = 1.25
BASE_NAME = HelloWorld
diff --git a/Lessons/Lesson_11/UefiLessonsPkg/ImageHandle/ImageHandle.c b/Lessons/Lesson_11/UefiLessonsPkg/ImageHandle/ImageHandle.c
index 32e9c43..57a92e6 100644
--- a/Lessons/Lesson_11/UefiLessonsPkg/ImageHandle/ImageHandle.c
+++ b/Lessons/Lesson_11/UefiLessonsPkg/ImageHandle/ImageHandle.c
@@ -1,3 +1,9 @@
+/*
+ * Copyright (c) 2021, Konstantin Aladyshev <aladyshev22@gmail.com>
+ *
+ * SPDX-License-Identifier: MIT
+ */
+
#include <Library/MemoryAllocationLib.h>
#include <Library/UefiBootServicesTableLib.h>
#include <Library/UefiLib.h>
diff --git a/Lessons/Lesson_11/UefiLessonsPkg/ImageHandle/ImageHandle.inf b/Lessons/Lesson_11/UefiLessonsPkg/ImageHandle/ImageHandle.inf
index 34256ee..6ee24ee 100644
--- a/Lessons/Lesson_11/UefiLessonsPkg/ImageHandle/ImageHandle.inf
+++ b/Lessons/Lesson_11/UefiLessonsPkg/ImageHandle/ImageHandle.inf
@@ -1,3 +1,9 @@
+##
+# Copyright (c) 2021, Konstantin Aladyshev <aladyshev22@gmail.com>
+#
+# SPDX-License-Identifier: MIT
+##
+
[Defines]
INF_VERSION = 1.25
BASE_NAME = ImageHandle
diff --git a/Lessons/Lesson_11/UefiLessonsPkg/ImageInfo/ImageInfo.c b/Lessons/Lesson_11/UefiLessonsPkg/ImageInfo/ImageInfo.c
index c45570e..d40d01a 100644
--- a/Lessons/Lesson_11/UefiLessonsPkg/ImageInfo/ImageInfo.c
+++ b/Lessons/Lesson_11/UefiLessonsPkg/ImageInfo/ImageInfo.c
@@ -1,3 +1,9 @@
+/*
+ * Copyright (c) 2021, Konstantin Aladyshev <aladyshev22@gmail.com>
+ *
+ * SPDX-License-Identifier: MIT
+ */
+
#include <Library/UefiBootServicesTableLib.h>
#include <Library/UefiLib.h>
diff --git a/Lessons/Lesson_11/UefiLessonsPkg/ImageInfo/ImageInfo.inf b/Lessons/Lesson_11/UefiLessonsPkg/ImageInfo/ImageInfo.inf
index 0ce54a6..61ab529 100644
--- a/Lessons/Lesson_11/UefiLessonsPkg/ImageInfo/ImageInfo.inf
+++ b/Lessons/Lesson_11/UefiLessonsPkg/ImageInfo/ImageInfo.inf
@@ -1,3 +1,9 @@
+##
+# Copyright (c) 2021, Konstantin Aladyshev <aladyshev22@gmail.com>
+#
+# SPDX-License-Identifier: MIT
+##
+
[Defines]
INF_VERSION = 1.25
BASE_NAME = ImageInfo
diff --git a/Lessons/Lesson_11/UefiLessonsPkg/MemoryInfo/MemoryInfo.c b/Lessons/Lesson_11/UefiLessonsPkg/MemoryInfo/MemoryInfo.c
index a8fcb83..1953a15 100644
--- a/Lessons/Lesson_11/UefiLessonsPkg/MemoryInfo/MemoryInfo.c
+++ b/Lessons/Lesson_11/UefiLessonsPkg/MemoryInfo/MemoryInfo.c
@@ -1,3 +1,9 @@
+/*
+ * Copyright (c) 2021, Konstantin Aladyshev <aladyshev22@gmail.com>
+ *
+ * SPDX-License-Identifier: MIT
+ */
+
#include <Library/UefiBootServicesTableLib.h>
#include <Library/UefiLib.h>
diff --git a/Lessons/Lesson_11/UefiLessonsPkg/MemoryInfo/MemoryInfo.inf b/Lessons/Lesson_11/UefiLessonsPkg/MemoryInfo/MemoryInfo.inf
index d18c087..5d337da 100644
--- a/Lessons/Lesson_11/UefiLessonsPkg/MemoryInfo/MemoryInfo.inf
+++ b/Lessons/Lesson_11/UefiLessonsPkg/MemoryInfo/MemoryInfo.inf
@@ -1,3 +1,9 @@
+##
+# Copyright (c) 2021, Konstantin Aladyshev <aladyshev22@gmail.com>
+#
+# SPDX-License-Identifier: MIT
+##
+
[Defines]
INF_VERSION = 1.25
BASE_NAME = MemoryInfo
diff --git a/Lessons/Lesson_11/UefiLessonsPkg/SimplestApp/SimplestApp.c b/Lessons/Lesson_11/UefiLessonsPkg/SimplestApp/SimplestApp.c
index 8bdf500..e46a2c5 100644
--- a/Lessons/Lesson_11/UefiLessonsPkg/SimplestApp/SimplestApp.c
+++ b/Lessons/Lesson_11/UefiLessonsPkg/SimplestApp/SimplestApp.c
@@ -1,3 +1,9 @@
+/*
+ * Copyright (c) 2021, Konstantin Aladyshev <aladyshev22@gmail.com>
+ *
+ * SPDX-License-Identifier: MIT
+ */
+
EFI_STATUS
EFIAPI
UefiMain (
diff --git a/Lessons/Lesson_11/UefiLessonsPkg/SimplestApp/SimplestApp.inf b/Lessons/Lesson_11/UefiLessonsPkg/SimplestApp/SimplestApp.inf
index 7d4bae2..5f4f0a1 100644
--- a/Lessons/Lesson_11/UefiLessonsPkg/SimplestApp/SimplestApp.inf
+++ b/Lessons/Lesson_11/UefiLessonsPkg/SimplestApp/SimplestApp.inf
@@ -1,3 +1,9 @@
+##
+# Copyright (c) 2021, Konstantin Aladyshev <aladyshev22@gmail.com>
+#
+# SPDX-License-Identifier: MIT
+##
+
[Defines]
INF_VERSION = 1.25
BASE_NAME = SimplestApp
diff --git a/Lessons/Lesson_11/UefiLessonsPkg/UefiLessonsPkg.dsc b/Lessons/Lesson_11/UefiLessonsPkg/UefiLessonsPkg.dsc
index 09f38ea..ab65b0e 100644
--- a/Lessons/Lesson_11/UefiLessonsPkg/UefiLessonsPkg.dsc
+++ b/Lessons/Lesson_11/UefiLessonsPkg/UefiLessonsPkg.dsc
@@ -1,3 +1,9 @@
+##
+# Copyright (c) 2021, Konstantin Aladyshev <aladyshev22@gmail.com>
+#
+# SPDX-License-Identifier: MIT
+##
+
[Defines]
DSC_SPECIFICATION = 0x0001001C
PLATFORM_GUID = 3db7270f-ffac-4139-90a4-0ae68f3f8167