aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKonstantin Aladyshev <aladyshev22@gmail.com>2022-09-23 18:07:05 +0300
committerKonstantin Aladyshev <aladyshev22@gmail.com>2022-09-23 18:07:05 +0300
commitc27efc5c51c5810a2323356c3efbbbc49b7158e5 (patch)
treea41517c267304f31333603c408d4e1e2a7bc9fbe
parent8824a76ded9314d4f8218b5bc0f0463cf2d3bba6 (diff)
downloadUEFI-Lessons-c27efc5c51c5810a2323356c3efbbbc49b7158e5.tar.gz
UEFI-Lessons-c27efc5c51c5810a2323356c3efbbbc49b7158e5.tar.bz2
UEFI-Lessons-c27efc5c51c5810a2323356c3efbbbc49b7158e5.zip
Update license info
Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com>
-rw-r--r--Lessons_uncategorized/Lesson_Build_tools/UefiLessonsPkg/BuildOptionsApp/BuildOptionsApp.c6
-rw-r--r--Lessons_uncategorized/Lesson_Build_tools/UefiLessonsPkg/BuildOptionsApp/BuildOptionsApp.inf6
-rw-r--r--Lessons_uncategorized/Lesson_Configuration_Language_5/UefiLessonsPkg/HIIConfig/HIIConfig.c6
-rw-r--r--Lessons_uncategorized/Lesson_Configuration_Language_5/UefiLessonsPkg/HIIConfig/HIIConfig.inf6
-rw-r--r--Lessons_uncategorized/Lesson_Configuration_Language_7/UefiLessonsPkg/HIIFormDataElementsWithKeywords/HIIFormDataElementsWithKeywords.c6
-rw-r--r--Lessons_uncategorized/Lesson_Configuration_Language_7/UefiLessonsPkg/HIIFormDataElementsWithKeywords/HIIFormDataElementsWithKeywords.inf6
-rw-r--r--Lessons_uncategorized/Lesson_Configuration_Language_7/UefiLessonsPkg/HIIKeyword/HIIKeyword.c6
-rw-r--r--Lessons_uncategorized/Lesson_Configuration_Language_7/UefiLessonsPkg/HIIKeyword/HIIKeyword.inf6
-rw-r--r--Lessons_uncategorized/Lesson_FDF_FV_10/UefiLessonsPkg/FfsFile/FfsFile.c6
-rw-r--r--Lessons_uncategorized/Lesson_FDF_FV_10/UefiLessonsPkg/FfsFile/FfsFile.inf6
-rw-r--r--Lessons_uncategorized/Lesson_FDF_FV_8/UefiLessonsPkg/BinaryModule/BinaryModule.inf6
-rw-r--r--Lessons_uncategorized/Lesson_SKU/UefiLessonsPkg/SetSku/SetSku.c6
-rw-r--r--Lessons_uncategorized/Lesson_SKU/UefiLessonsPkg/SetSku/SetSku.inf6
-rw-r--r--UefiLessonsPkg/FfsFile/FfsFile.c6
-rw-r--r--UefiLessonsPkg/FfsFile/FfsFile.inf6
-rw-r--r--UefiLessonsPkg/HIIConfig/HIIConfig.c6
-rw-r--r--UefiLessonsPkg/HIIConfig/HIIConfig.inf6
-rw-r--r--UefiLessonsPkg/HIIFormDataElementsWithKeywords/HIIFormDataElementsWithKeywords.c6
-rw-r--r--UefiLessonsPkg/HIIFormDataElementsWithKeywords/HIIFormDataElementsWithKeywords.inf6
-rw-r--r--UefiLessonsPkg/HIIKeyword/HIIKeyword.c6
-rw-r--r--UefiLessonsPkg/HIIKeyword/HIIKeyword.inf6
-rw-r--r--UefiLessonsPkg/SetSku/SetSku.c6
-rw-r--r--UefiLessonsPkg/SetSku/SetSku.inf6
23 files changed, 138 insertions, 0 deletions
diff --git a/Lessons_uncategorized/Lesson_Build_tools/UefiLessonsPkg/BuildOptionsApp/BuildOptionsApp.c b/Lessons_uncategorized/Lesson_Build_tools/UefiLessonsPkg/BuildOptionsApp/BuildOptionsApp.c
index dc97c48..4daec55 100644
--- a/Lessons_uncategorized/Lesson_Build_tools/UefiLessonsPkg/BuildOptionsApp/BuildOptionsApp.c
+++ b/Lessons_uncategorized/Lesson_Build_tools/UefiLessonsPkg/BuildOptionsApp/BuildOptionsApp.c
@@ -1,3 +1,9 @@
+/*
+ * Copyright (c) 2022, Konstantin Aladyshev <aladyshev22@gmail.com>
+ *
+ * SPDX-License-Identifier: MIT
+ */
+
#include <Library/UefiBootServicesTableLib.h>
#include <Library/UefiLib.h>
diff --git a/Lessons_uncategorized/Lesson_Build_tools/UefiLessonsPkg/BuildOptionsApp/BuildOptionsApp.inf b/Lessons_uncategorized/Lesson_Build_tools/UefiLessonsPkg/BuildOptionsApp/BuildOptionsApp.inf
index a0581f1..ce954bd 100644
--- a/Lessons_uncategorized/Lesson_Build_tools/UefiLessonsPkg/BuildOptionsApp/BuildOptionsApp.inf
+++ b/Lessons_uncategorized/Lesson_Build_tools/UefiLessonsPkg/BuildOptionsApp/BuildOptionsApp.inf
@@ -1,3 +1,9 @@
+##
+# Copyright (c) 2022, Konstantin Aladyshev <aladyshev22@gmail.com>
+#
+# SPDX-License-Identifier: MIT
+##
+
[Defines]
INF_VERSION = 1.25
BASE_NAME = BuildOptionsApp
diff --git a/Lessons_uncategorized/Lesson_Configuration_Language_5/UefiLessonsPkg/HIIConfig/HIIConfig.c b/Lessons_uncategorized/Lesson_Configuration_Language_5/UefiLessonsPkg/HIIConfig/HIIConfig.c
index 3a2493b..fb03fd7 100644
--- a/Lessons_uncategorized/Lesson_Configuration_Language_5/UefiLessonsPkg/HIIConfig/HIIConfig.c
+++ b/Lessons_uncategorized/Lesson_Configuration_Language_5/UefiLessonsPkg/HIIConfig/HIIConfig.c
@@ -1,3 +1,9 @@
+/*
+ * Copyright (c) 2022, Konstantin Aladyshev <aladyshev22@gmail.com>
+ *
+ * SPDX-License-Identifier: MIT
+ */
+
#include <Library/UefiBootServicesTableLib.h>
#include <Library/UefiLib.h>
#include <Library/DevicePathLib.h>
diff --git a/Lessons_uncategorized/Lesson_Configuration_Language_5/UefiLessonsPkg/HIIConfig/HIIConfig.inf b/Lessons_uncategorized/Lesson_Configuration_Language_5/UefiLessonsPkg/HIIConfig/HIIConfig.inf
index 6a1f99e..b12ef11 100644
--- a/Lessons_uncategorized/Lesson_Configuration_Language_5/UefiLessonsPkg/HIIConfig/HIIConfig.inf
+++ b/Lessons_uncategorized/Lesson_Configuration_Language_5/UefiLessonsPkg/HIIConfig/HIIConfig.inf
@@ -1,3 +1,9 @@
+##
+# Copyright (c) 2022, Konstantin Aladyshev <aladyshev22@gmail.com>
+#
+# SPDX-License-Identifier: MIT
+##
+
[Defines]
INF_VERSION = 1.25
BASE_NAME = HIIConfig
diff --git a/Lessons_uncategorized/Lesson_Configuration_Language_7/UefiLessonsPkg/HIIFormDataElementsWithKeywords/HIIFormDataElementsWithKeywords.c b/Lessons_uncategorized/Lesson_Configuration_Language_7/UefiLessonsPkg/HIIFormDataElementsWithKeywords/HIIFormDataElementsWithKeywords.c
index 23b1db3..5ebdabd 100644
--- a/Lessons_uncategorized/Lesson_Configuration_Language_7/UefiLessonsPkg/HIIFormDataElementsWithKeywords/HIIFormDataElementsWithKeywords.c
+++ b/Lessons_uncategorized/Lesson_Configuration_Language_7/UefiLessonsPkg/HIIFormDataElementsWithKeywords/HIIFormDataElementsWithKeywords.c
@@ -1,3 +1,9 @@
+/*
+ * Copyright (c) 2022, Konstantin Aladyshev <aladyshev22@gmail.com>
+ *
+ * SPDX-License-Identifier: MIT
+ */
+
#include <Library/BaseMemoryLib.h>
#include <Library/DevicePathLib.h>
#include <Library/HiiLib.h>
diff --git a/Lessons_uncategorized/Lesson_Configuration_Language_7/UefiLessonsPkg/HIIFormDataElementsWithKeywords/HIIFormDataElementsWithKeywords.inf b/Lessons_uncategorized/Lesson_Configuration_Language_7/UefiLessonsPkg/HIIFormDataElementsWithKeywords/HIIFormDataElementsWithKeywords.inf
index a75faa9..137605e 100644
--- a/Lessons_uncategorized/Lesson_Configuration_Language_7/UefiLessonsPkg/HIIFormDataElementsWithKeywords/HIIFormDataElementsWithKeywords.inf
+++ b/Lessons_uncategorized/Lesson_Configuration_Language_7/UefiLessonsPkg/HIIFormDataElementsWithKeywords/HIIFormDataElementsWithKeywords.inf
@@ -1,3 +1,9 @@
+##
+# Copyright (c) 2022, Konstantin Aladyshev <aladyshev22@gmail.com>
+#
+# SPDX-License-Identifier: MIT
+##
+
[Defines]
INF_VERSION = 1.25
BASE_NAME = HIIFormDataElementsWithKeywords
diff --git a/Lessons_uncategorized/Lesson_Configuration_Language_7/UefiLessonsPkg/HIIKeyword/HIIKeyword.c b/Lessons_uncategorized/Lesson_Configuration_Language_7/UefiLessonsPkg/HIIKeyword/HIIKeyword.c
index 00575a7..45bfd72 100644
--- a/Lessons_uncategorized/Lesson_Configuration_Language_7/UefiLessonsPkg/HIIKeyword/HIIKeyword.c
+++ b/Lessons_uncategorized/Lesson_Configuration_Language_7/UefiLessonsPkg/HIIKeyword/HIIKeyword.c
@@ -1,3 +1,9 @@
+/*
+ * Copyright (c) 2022, Konstantin Aladyshev <aladyshev22@gmail.com>
+ *
+ * SPDX-License-Identifier: MIT
+ */
+
#include <Library/UefiBootServicesTableLib.h>
#include <Library/UefiLib.h>
#include <Protocol/HiiConfigKeyword.h>
diff --git a/Lessons_uncategorized/Lesson_Configuration_Language_7/UefiLessonsPkg/HIIKeyword/HIIKeyword.inf b/Lessons_uncategorized/Lesson_Configuration_Language_7/UefiLessonsPkg/HIIKeyword/HIIKeyword.inf
index de46152..080c981 100644
--- a/Lessons_uncategorized/Lesson_Configuration_Language_7/UefiLessonsPkg/HIIKeyword/HIIKeyword.inf
+++ b/Lessons_uncategorized/Lesson_Configuration_Language_7/UefiLessonsPkg/HIIKeyword/HIIKeyword.inf
@@ -1,3 +1,9 @@
+##
+# Copyright (c) 2022, Konstantin Aladyshev <aladyshev22@gmail.com>
+#
+# SPDX-License-Identifier: MIT
+##
+
[Defines]
INF_VERSION = 1.25
BASE_NAME = HIIKeyword
diff --git a/Lessons_uncategorized/Lesson_FDF_FV_10/UefiLessonsPkg/FfsFile/FfsFile.c b/Lessons_uncategorized/Lesson_FDF_FV_10/UefiLessonsPkg/FfsFile/FfsFile.c
index 0ae988f..50a3cdb 100644
--- a/Lessons_uncategorized/Lesson_FDF_FV_10/UefiLessonsPkg/FfsFile/FfsFile.c
+++ b/Lessons_uncategorized/Lesson_FDF_FV_10/UefiLessonsPkg/FfsFile/FfsFile.c
@@ -1,3 +1,9 @@
+/*
+ * Copyright (c) 2022, Konstantin Aladyshev <aladyshev22@gmail.com>
+ *
+ * SPDX-License-Identifier: MIT
+ */
+
#include <Library/UefiBootServicesTableLib.h>
#include <Library/UefiLib.h>
#include <Pi/PiFirmwareFile.h>
diff --git a/Lessons_uncategorized/Lesson_FDF_FV_10/UefiLessonsPkg/FfsFile/FfsFile.inf b/Lessons_uncategorized/Lesson_FDF_FV_10/UefiLessonsPkg/FfsFile/FfsFile.inf
index 9b30b08..b2ba73f 100644
--- a/Lessons_uncategorized/Lesson_FDF_FV_10/UefiLessonsPkg/FfsFile/FfsFile.inf
+++ b/Lessons_uncategorized/Lesson_FDF_FV_10/UefiLessonsPkg/FfsFile/FfsFile.inf
@@ -1,3 +1,9 @@
+##
+# Copyright (c) 2022, Konstantin Aladyshev <aladyshev22@gmail.com>
+#
+# SPDX-License-Identifier: MIT
+##
+
[Defines]
INF_VERSION = 1.25
BASE_NAME = FfsFile
diff --git a/Lessons_uncategorized/Lesson_FDF_FV_8/UefiLessonsPkg/BinaryModule/BinaryModule.inf b/Lessons_uncategorized/Lesson_FDF_FV_8/UefiLessonsPkg/BinaryModule/BinaryModule.inf
index 9b85d76..a7607d5 100644
--- a/Lessons_uncategorized/Lesson_FDF_FV_8/UefiLessonsPkg/BinaryModule/BinaryModule.inf
+++ b/Lessons_uncategorized/Lesson_FDF_FV_8/UefiLessonsPkg/BinaryModule/BinaryModule.inf
@@ -1,3 +1,9 @@
+##
+# Copyright (c) 2022, Konstantin Aladyshev <aladyshev22@gmail.com>
+#
+# SPDX-License-Identifier: MIT
+##
+
[Defines]
INF_VERSION = 1.25
BASE_NAME = BinaryModule
diff --git a/Lessons_uncategorized/Lesson_SKU/UefiLessonsPkg/SetSku/SetSku.c b/Lessons_uncategorized/Lesson_SKU/UefiLessonsPkg/SetSku/SetSku.c
index 8683947..311277c 100644
--- a/Lessons_uncategorized/Lesson_SKU/UefiLessonsPkg/SetSku/SetSku.c
+++ b/Lessons_uncategorized/Lesson_SKU/UefiLessonsPkg/SetSku/SetSku.c
@@ -1,3 +1,9 @@
+/*
+ * Copyright (c) 2022, Konstantin Aladyshev <aladyshev22@gmail.com>
+ *
+ * SPDX-License-Identifier: MIT
+ */
+
#include <Library/UefiBootServicesTableLib.h>
#include <Library/UefiLib.h>
diff --git a/Lessons_uncategorized/Lesson_SKU/UefiLessonsPkg/SetSku/SetSku.inf b/Lessons_uncategorized/Lesson_SKU/UefiLessonsPkg/SetSku/SetSku.inf
index b14aed8..e0bc9fa 100644
--- a/Lessons_uncategorized/Lesson_SKU/UefiLessonsPkg/SetSku/SetSku.inf
+++ b/Lessons_uncategorized/Lesson_SKU/UefiLessonsPkg/SetSku/SetSku.inf
@@ -1,3 +1,9 @@
+##
+# Copyright (c) 2022, Konstantin Aladyshev <aladyshev22@gmail.com>
+#
+# SPDX-License-Identifier: MIT
+##
+
[Defines]
INF_VERSION = 1.25
BASE_NAME = SetSku
diff --git a/UefiLessonsPkg/FfsFile/FfsFile.c b/UefiLessonsPkg/FfsFile/FfsFile.c
index 0ae988f..50a3cdb 100644
--- a/UefiLessonsPkg/FfsFile/FfsFile.c
+++ b/UefiLessonsPkg/FfsFile/FfsFile.c
@@ -1,3 +1,9 @@
+/*
+ * Copyright (c) 2022, Konstantin Aladyshev <aladyshev22@gmail.com>
+ *
+ * SPDX-License-Identifier: MIT
+ */
+
#include <Library/UefiBootServicesTableLib.h>
#include <Library/UefiLib.h>
#include <Pi/PiFirmwareFile.h>
diff --git a/UefiLessonsPkg/FfsFile/FfsFile.inf b/UefiLessonsPkg/FfsFile/FfsFile.inf
index 9b30b08..b2ba73f 100644
--- a/UefiLessonsPkg/FfsFile/FfsFile.inf
+++ b/UefiLessonsPkg/FfsFile/FfsFile.inf
@@ -1,3 +1,9 @@
+##
+# Copyright (c) 2022, Konstantin Aladyshev <aladyshev22@gmail.com>
+#
+# SPDX-License-Identifier: MIT
+##
+
[Defines]
INF_VERSION = 1.25
BASE_NAME = FfsFile
diff --git a/UefiLessonsPkg/HIIConfig/HIIConfig.c b/UefiLessonsPkg/HIIConfig/HIIConfig.c
index 3a2493b..fb03fd7 100644
--- a/UefiLessonsPkg/HIIConfig/HIIConfig.c
+++ b/UefiLessonsPkg/HIIConfig/HIIConfig.c
@@ -1,3 +1,9 @@
+/*
+ * Copyright (c) 2022, Konstantin Aladyshev <aladyshev22@gmail.com>
+ *
+ * SPDX-License-Identifier: MIT
+ */
+
#include <Library/UefiBootServicesTableLib.h>
#include <Library/UefiLib.h>
#include <Library/DevicePathLib.h>
diff --git a/UefiLessonsPkg/HIIConfig/HIIConfig.inf b/UefiLessonsPkg/HIIConfig/HIIConfig.inf
index 6a1f99e..b12ef11 100644
--- a/UefiLessonsPkg/HIIConfig/HIIConfig.inf
+++ b/UefiLessonsPkg/HIIConfig/HIIConfig.inf
@@ -1,3 +1,9 @@
+##
+# Copyright (c) 2022, Konstantin Aladyshev <aladyshev22@gmail.com>
+#
+# SPDX-License-Identifier: MIT
+##
+
[Defines]
INF_VERSION = 1.25
BASE_NAME = HIIConfig
diff --git a/UefiLessonsPkg/HIIFormDataElementsWithKeywords/HIIFormDataElementsWithKeywords.c b/UefiLessonsPkg/HIIFormDataElementsWithKeywords/HIIFormDataElementsWithKeywords.c
index 23b1db3..5ebdabd 100644
--- a/UefiLessonsPkg/HIIFormDataElementsWithKeywords/HIIFormDataElementsWithKeywords.c
+++ b/UefiLessonsPkg/HIIFormDataElementsWithKeywords/HIIFormDataElementsWithKeywords.c
@@ -1,3 +1,9 @@
+/*
+ * Copyright (c) 2022, Konstantin Aladyshev <aladyshev22@gmail.com>
+ *
+ * SPDX-License-Identifier: MIT
+ */
+
#include <Library/BaseMemoryLib.h>
#include <Library/DevicePathLib.h>
#include <Library/HiiLib.h>
diff --git a/UefiLessonsPkg/HIIFormDataElementsWithKeywords/HIIFormDataElementsWithKeywords.inf b/UefiLessonsPkg/HIIFormDataElementsWithKeywords/HIIFormDataElementsWithKeywords.inf
index a75faa9..137605e 100644
--- a/UefiLessonsPkg/HIIFormDataElementsWithKeywords/HIIFormDataElementsWithKeywords.inf
+++ b/UefiLessonsPkg/HIIFormDataElementsWithKeywords/HIIFormDataElementsWithKeywords.inf
@@ -1,3 +1,9 @@
+##
+# Copyright (c) 2022, Konstantin Aladyshev <aladyshev22@gmail.com>
+#
+# SPDX-License-Identifier: MIT
+##
+
[Defines]
INF_VERSION = 1.25
BASE_NAME = HIIFormDataElementsWithKeywords
diff --git a/UefiLessonsPkg/HIIKeyword/HIIKeyword.c b/UefiLessonsPkg/HIIKeyword/HIIKeyword.c
index 00575a7..45bfd72 100644
--- a/UefiLessonsPkg/HIIKeyword/HIIKeyword.c
+++ b/UefiLessonsPkg/HIIKeyword/HIIKeyword.c
@@ -1,3 +1,9 @@
+/*
+ * Copyright (c) 2022, Konstantin Aladyshev <aladyshev22@gmail.com>
+ *
+ * SPDX-License-Identifier: MIT
+ */
+
#include <Library/UefiBootServicesTableLib.h>
#include <Library/UefiLib.h>
#include <Protocol/HiiConfigKeyword.h>
diff --git a/UefiLessonsPkg/HIIKeyword/HIIKeyword.inf b/UefiLessonsPkg/HIIKeyword/HIIKeyword.inf
index de46152..080c981 100644
--- a/UefiLessonsPkg/HIIKeyword/HIIKeyword.inf
+++ b/UefiLessonsPkg/HIIKeyword/HIIKeyword.inf
@@ -1,3 +1,9 @@
+##
+# Copyright (c) 2022, Konstantin Aladyshev <aladyshev22@gmail.com>
+#
+# SPDX-License-Identifier: MIT
+##
+
[Defines]
INF_VERSION = 1.25
BASE_NAME = HIIKeyword
diff --git a/UefiLessonsPkg/SetSku/SetSku.c b/UefiLessonsPkg/SetSku/SetSku.c
index 8683947..311277c 100644
--- a/UefiLessonsPkg/SetSku/SetSku.c
+++ b/UefiLessonsPkg/SetSku/SetSku.c
@@ -1,3 +1,9 @@
+/*
+ * Copyright (c) 2022, Konstantin Aladyshev <aladyshev22@gmail.com>
+ *
+ * SPDX-License-Identifier: MIT
+ */
+
#include <Library/UefiBootServicesTableLib.h>
#include <Library/UefiLib.h>
diff --git a/UefiLessonsPkg/SetSku/SetSku.inf b/UefiLessonsPkg/SetSku/SetSku.inf
index b14aed8..e0bc9fa 100644
--- a/UefiLessonsPkg/SetSku/SetSku.inf
+++ b/UefiLessonsPkg/SetSku/SetSku.inf
@@ -1,3 +1,9 @@
+##
+# Copyright (c) 2022, Konstantin Aladyshev <aladyshev22@gmail.com>
+#
+# SPDX-License-Identifier: MIT
+##
+
[Defines]
INF_VERSION = 1.25
BASE_NAME = SetSku