From 43a54284ee4bdda6d9ffdb6348d7c2d79c9d09f1 Mon Sep 17 00:00:00 2001 From: Konstantin Aladyshev Date: Sat, 30 Oct 2021 00:44:34 +0300 Subject: Add license header to source files Signed-off-by: Konstantin Aladyshev --- Lessons/Lesson_29/UefiLessonsPkg/AcpiInfo/AcpiInfo.c | 6 ++++++ Lessons/Lesson_29/UefiLessonsPkg/AcpiInfo/AcpiInfo.inf | 6 ++++++ Lessons/Lesson_29/UefiLessonsPkg/HelloWorld/HelloWorld.c | 6 ++++++ Lessons/Lesson_29/UefiLessonsPkg/HelloWorld/HelloWorld.inf | 6 ++++++ Lessons/Lesson_29/UefiLessonsPkg/ImageHandle/ImageHandle.c | 6 ++++++ Lessons/Lesson_29/UefiLessonsPkg/ImageHandle/ImageHandle.inf | 6 ++++++ Lessons/Lesson_29/UefiLessonsPkg/ImageInfo/ImageInfo.c | 6 ++++++ Lessons/Lesson_29/UefiLessonsPkg/ImageInfo/ImageInfo.inf | 6 ++++++ Lessons/Lesson_29/UefiLessonsPkg/InteractiveApp/InteractiveApp.c | 6 ++++++ Lessons/Lesson_29/UefiLessonsPkg/InteractiveApp/InteractiveApp.inf | 6 ++++++ Lessons/Lesson_29/UefiLessonsPkg/ListVariables/ListVariables.c | 6 ++++++ Lessons/Lesson_29/UefiLessonsPkg/ListVariables/ListVariables.inf | 6 ++++++ Lessons/Lesson_29/UefiLessonsPkg/MemoryInfo/MemoryInfo.c | 6 ++++++ Lessons/Lesson_29/UefiLessonsPkg/MemoryInfo/MemoryInfo.inf | 6 ++++++ Lessons/Lesson_29/UefiLessonsPkg/PCDLesson/PCDLesson.c | 6 ++++++ Lessons/Lesson_29/UefiLessonsPkg/PCDLesson/PCDLesson.inf | 6 ++++++ Lessons/Lesson_29/UefiLessonsPkg/SaveBGRT/SaveBGRT.c | 6 ++++++ Lessons/Lesson_29/UefiLessonsPkg/SaveBGRT/SaveBGRT.inf | 6 ++++++ .../Lesson_29/UefiLessonsPkg/ShowBootVariables/ShowBootVariables.c | 6 ++++++ .../UefiLessonsPkg/ShowBootVariables/ShowBootVariables.inf | 6 ++++++ Lessons/Lesson_29/UefiLessonsPkg/ShowTables/ShowTables.c | 6 ++++++ Lessons/Lesson_29/UefiLessonsPkg/ShowTables/ShowTables.inf | 6 ++++++ Lessons/Lesson_29/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.c | 6 ++++++ Lessons/Lesson_29/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.inf | 6 ++++++ Lessons/Lesson_29/UefiLessonsPkg/SimplestApp/SimplestApp.c | 6 ++++++ Lessons/Lesson_29/UefiLessonsPkg/SimplestApp/SimplestApp.inf | 6 ++++++ Lessons/Lesson_29/UefiLessonsPkg/UefiLessonsPkg.dec | 6 ++++++ Lessons/Lesson_29/UefiLessonsPkg/UefiLessonsPkg.dsc | 6 ++++++ 28 files changed, 168 insertions(+) (limited to 'Lessons/Lesson_29/UefiLessonsPkg') diff --git a/Lessons/Lesson_29/UefiLessonsPkg/AcpiInfo/AcpiInfo.c b/Lessons/Lesson_29/UefiLessonsPkg/AcpiInfo/AcpiInfo.c index 9b3c866..cff215d 100644 --- a/Lessons/Lesson_29/UefiLessonsPkg/AcpiInfo/AcpiInfo.c +++ b/Lessons/Lesson_29/UefiLessonsPkg/AcpiInfo/AcpiInfo.c @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2021, Konstantin Aladyshev + * + * SPDX-License-Identifier: MIT + */ + #include #include diff --git a/Lessons/Lesson_29/UefiLessonsPkg/AcpiInfo/AcpiInfo.inf b/Lessons/Lesson_29/UefiLessonsPkg/AcpiInfo/AcpiInfo.inf index 53d0356..1ae78c9 100644 --- a/Lessons/Lesson_29/UefiLessonsPkg/AcpiInfo/AcpiInfo.inf +++ b/Lessons/Lesson_29/UefiLessonsPkg/AcpiInfo/AcpiInfo.inf @@ -1,3 +1,9 @@ +## +# Copyright (c) 2021, Konstantin Aladyshev +# +# SPDX-License-Identifier: MIT +## + [Defines] INF_VERSION = 1.25 BASE_NAME = AcpiInfo diff --git a/Lessons/Lesson_29/UefiLessonsPkg/HelloWorld/HelloWorld.c b/Lessons/Lesson_29/UefiLessonsPkg/HelloWorld/HelloWorld.c index 29a4812..fa8b991 100644 --- a/Lessons/Lesson_29/UefiLessonsPkg/HelloWorld/HelloWorld.c +++ b/Lessons/Lesson_29/UefiLessonsPkg/HelloWorld/HelloWorld.c @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2021, Konstantin Aladyshev + * + * SPDX-License-Identifier: MIT + */ + #include #include diff --git a/Lessons/Lesson_29/UefiLessonsPkg/HelloWorld/HelloWorld.inf b/Lessons/Lesson_29/UefiLessonsPkg/HelloWorld/HelloWorld.inf index d65ca2e..b448d51 100644 --- a/Lessons/Lesson_29/UefiLessonsPkg/HelloWorld/HelloWorld.inf +++ b/Lessons/Lesson_29/UefiLessonsPkg/HelloWorld/HelloWorld.inf @@ -1,3 +1,9 @@ +## +# Copyright (c) 2021, Konstantin Aladyshev +# +# SPDX-License-Identifier: MIT +## + [Defines] INF_VERSION = 1.25 BASE_NAME = HelloWorld diff --git a/Lessons/Lesson_29/UefiLessonsPkg/ImageHandle/ImageHandle.c b/Lessons/Lesson_29/UefiLessonsPkg/ImageHandle/ImageHandle.c index 32e9c43..57a92e6 100644 --- a/Lessons/Lesson_29/UefiLessonsPkg/ImageHandle/ImageHandle.c +++ b/Lessons/Lesson_29/UefiLessonsPkg/ImageHandle/ImageHandle.c @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2021, Konstantin Aladyshev + * + * SPDX-License-Identifier: MIT + */ + #include #include #include diff --git a/Lessons/Lesson_29/UefiLessonsPkg/ImageHandle/ImageHandle.inf b/Lessons/Lesson_29/UefiLessonsPkg/ImageHandle/ImageHandle.inf index 34256ee..6ee24ee 100644 --- a/Lessons/Lesson_29/UefiLessonsPkg/ImageHandle/ImageHandle.inf +++ b/Lessons/Lesson_29/UefiLessonsPkg/ImageHandle/ImageHandle.inf @@ -1,3 +1,9 @@ +## +# Copyright (c) 2021, Konstantin Aladyshev +# +# SPDX-License-Identifier: MIT +## + [Defines] INF_VERSION = 1.25 BASE_NAME = ImageHandle diff --git a/Lessons/Lesson_29/UefiLessonsPkg/ImageInfo/ImageInfo.c b/Lessons/Lesson_29/UefiLessonsPkg/ImageInfo/ImageInfo.c index c45570e..d40d01a 100644 --- a/Lessons/Lesson_29/UefiLessonsPkg/ImageInfo/ImageInfo.c +++ b/Lessons/Lesson_29/UefiLessonsPkg/ImageInfo/ImageInfo.c @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2021, Konstantin Aladyshev + * + * SPDX-License-Identifier: MIT + */ + #include #include diff --git a/Lessons/Lesson_29/UefiLessonsPkg/ImageInfo/ImageInfo.inf b/Lessons/Lesson_29/UefiLessonsPkg/ImageInfo/ImageInfo.inf index 0ce54a6..61ab529 100644 --- a/Lessons/Lesson_29/UefiLessonsPkg/ImageInfo/ImageInfo.inf +++ b/Lessons/Lesson_29/UefiLessonsPkg/ImageInfo/ImageInfo.inf @@ -1,3 +1,9 @@ +## +# Copyright (c) 2021, Konstantin Aladyshev +# +# SPDX-License-Identifier: MIT +## + [Defines] INF_VERSION = 1.25 BASE_NAME = ImageInfo diff --git a/Lessons/Lesson_29/UefiLessonsPkg/InteractiveApp/InteractiveApp.c b/Lessons/Lesson_29/UefiLessonsPkg/InteractiveApp/InteractiveApp.c index 59c89a9..a12c41c 100644 --- a/Lessons/Lesson_29/UefiLessonsPkg/InteractiveApp/InteractiveApp.c +++ b/Lessons/Lesson_29/UefiLessonsPkg/InteractiveApp/InteractiveApp.c @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2021, Konstantin Aladyshev + * + * SPDX-License-Identifier: MIT + */ + #include #include diff --git a/Lessons/Lesson_29/UefiLessonsPkg/InteractiveApp/InteractiveApp.inf b/Lessons/Lesson_29/UefiLessonsPkg/InteractiveApp/InteractiveApp.inf index 700b779..739ef92 100644 --- a/Lessons/Lesson_29/UefiLessonsPkg/InteractiveApp/InteractiveApp.inf +++ b/Lessons/Lesson_29/UefiLessonsPkg/InteractiveApp/InteractiveApp.inf @@ -1,3 +1,9 @@ +## +# Copyright (c) 2021, Konstantin Aladyshev +# +# SPDX-License-Identifier: MIT +## + [Defines] INF_VERSION = 1.25 BASE_NAME = InteractiveApp diff --git a/Lessons/Lesson_29/UefiLessonsPkg/ListVariables/ListVariables.c b/Lessons/Lesson_29/UefiLessonsPkg/ListVariables/ListVariables.c index 1f3ef4a..ca00668 100644 --- a/Lessons/Lesson_29/UefiLessonsPkg/ListVariables/ListVariables.c +++ b/Lessons/Lesson_29/UefiLessonsPkg/ListVariables/ListVariables.c @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2021, Konstantin Aladyshev + * + * SPDX-License-Identifier: MIT + */ + #include #include diff --git a/Lessons/Lesson_29/UefiLessonsPkg/ListVariables/ListVariables.inf b/Lessons/Lesson_29/UefiLessonsPkg/ListVariables/ListVariables.inf index 14e9fa2..9b0f31b 100644 --- a/Lessons/Lesson_29/UefiLessonsPkg/ListVariables/ListVariables.inf +++ b/Lessons/Lesson_29/UefiLessonsPkg/ListVariables/ListVariables.inf @@ -1,3 +1,9 @@ +## +# Copyright (c) 2021, Konstantin Aladyshev +# +# SPDX-License-Identifier: MIT +## + [Defines] INF_VERSION = 1.25 BASE_NAME = ListVariables diff --git a/Lessons/Lesson_29/UefiLessonsPkg/MemoryInfo/MemoryInfo.c b/Lessons/Lesson_29/UefiLessonsPkg/MemoryInfo/MemoryInfo.c index 8c3bcf2..463f0fa 100644 --- a/Lessons/Lesson_29/UefiLessonsPkg/MemoryInfo/MemoryInfo.c +++ b/Lessons/Lesson_29/UefiLessonsPkg/MemoryInfo/MemoryInfo.c @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2021, Konstantin Aladyshev + * + * SPDX-License-Identifier: MIT + */ + #include #include diff --git a/Lessons/Lesson_29/UefiLessonsPkg/MemoryInfo/MemoryInfo.inf b/Lessons/Lesson_29/UefiLessonsPkg/MemoryInfo/MemoryInfo.inf index 777010d..1fe6e17 100644 --- a/Lessons/Lesson_29/UefiLessonsPkg/MemoryInfo/MemoryInfo.inf +++ b/Lessons/Lesson_29/UefiLessonsPkg/MemoryInfo/MemoryInfo.inf @@ -1,3 +1,9 @@ +## +# Copyright (c) 2021, Konstantin Aladyshev +# +# SPDX-License-Identifier: MIT +## + [Defines] INF_VERSION = 1.25 BASE_NAME = MemoryInfo diff --git a/Lessons/Lesson_29/UefiLessonsPkg/PCDLesson/PCDLesson.c b/Lessons/Lesson_29/UefiLessonsPkg/PCDLesson/PCDLesson.c index 9e0aae0..ee6e5f6 100644 --- a/Lessons/Lesson_29/UefiLessonsPkg/PCDLesson/PCDLesson.c +++ b/Lessons/Lesson_29/UefiLessonsPkg/PCDLesson/PCDLesson.c @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2021, Konstantin Aladyshev + * + * SPDX-License-Identifier: MIT + */ + #include #include diff --git a/Lessons/Lesson_29/UefiLessonsPkg/PCDLesson/PCDLesson.inf b/Lessons/Lesson_29/UefiLessonsPkg/PCDLesson/PCDLesson.inf index cfd39d2..e78808a 100644 --- a/Lessons/Lesson_29/UefiLessonsPkg/PCDLesson/PCDLesson.inf +++ b/Lessons/Lesson_29/UefiLessonsPkg/PCDLesson/PCDLesson.inf @@ -1,3 +1,9 @@ +## +# Copyright (c) 2021, Konstantin Aladyshev +# +# SPDX-License-Identifier: MIT +## + [Defines] INF_VERSION = 1.25 BASE_NAME = PCDLesson diff --git a/Lessons/Lesson_29/UefiLessonsPkg/SaveBGRT/SaveBGRT.c b/Lessons/Lesson_29/UefiLessonsPkg/SaveBGRT/SaveBGRT.c index 2fda8d8..2433673 100644 --- a/Lessons/Lesson_29/UefiLessonsPkg/SaveBGRT/SaveBGRT.c +++ b/Lessons/Lesson_29/UefiLessonsPkg/SaveBGRT/SaveBGRT.c @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2021, Konstantin Aladyshev + * + * SPDX-License-Identifier: MIT + */ + #include #include diff --git a/Lessons/Lesson_29/UefiLessonsPkg/SaveBGRT/SaveBGRT.inf b/Lessons/Lesson_29/UefiLessonsPkg/SaveBGRT/SaveBGRT.inf index 93ab1b9..f0d1899 100644 --- a/Lessons/Lesson_29/UefiLessonsPkg/SaveBGRT/SaveBGRT.inf +++ b/Lessons/Lesson_29/UefiLessonsPkg/SaveBGRT/SaveBGRT.inf @@ -1,3 +1,9 @@ +## +# Copyright (c) 2021, Konstantin Aladyshev +# +# SPDX-License-Identifier: MIT +## + [Defines] INF_VERSION = 1.25 BASE_NAME = SaveBGRT diff --git a/Lessons/Lesson_29/UefiLessonsPkg/ShowBootVariables/ShowBootVariables.c b/Lessons/Lesson_29/UefiLessonsPkg/ShowBootVariables/ShowBootVariables.c index 7f6b58c..f067f43 100644 --- a/Lessons/Lesson_29/UefiLessonsPkg/ShowBootVariables/ShowBootVariables.c +++ b/Lessons/Lesson_29/UefiLessonsPkg/ShowBootVariables/ShowBootVariables.c @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2021, Konstantin Aladyshev + * + * SPDX-License-Identifier: MIT + */ + #include #include diff --git a/Lessons/Lesson_29/UefiLessonsPkg/ShowBootVariables/ShowBootVariables.inf b/Lessons/Lesson_29/UefiLessonsPkg/ShowBootVariables/ShowBootVariables.inf index d2cfba9..c288e6e 100644 --- a/Lessons/Lesson_29/UefiLessonsPkg/ShowBootVariables/ShowBootVariables.inf +++ b/Lessons/Lesson_29/UefiLessonsPkg/ShowBootVariables/ShowBootVariables.inf @@ -1,3 +1,9 @@ +## +# Copyright (c) 2021, Konstantin Aladyshev +# +# SPDX-License-Identifier: MIT +## + [Defines] INF_VERSION = 1.25 BASE_NAME = ShowBootVariables diff --git a/Lessons/Lesson_29/UefiLessonsPkg/ShowTables/ShowTables.c b/Lessons/Lesson_29/UefiLessonsPkg/ShowTables/ShowTables.c index aa32f41..bf876b4 100644 --- a/Lessons/Lesson_29/UefiLessonsPkg/ShowTables/ShowTables.c +++ b/Lessons/Lesson_29/UefiLessonsPkg/ShowTables/ShowTables.c @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2021, Konstantin Aladyshev + * + * SPDX-License-Identifier: MIT + */ + #include #include diff --git a/Lessons/Lesson_29/UefiLessonsPkg/ShowTables/ShowTables.inf b/Lessons/Lesson_29/UefiLessonsPkg/ShowTables/ShowTables.inf index 056b823..fd750e2 100644 --- a/Lessons/Lesson_29/UefiLessonsPkg/ShowTables/ShowTables.inf +++ b/Lessons/Lesson_29/UefiLessonsPkg/ShowTables/ShowTables.inf @@ -1,3 +1,9 @@ +## +# Copyright (c) 2021, Konstantin Aladyshev +# +# SPDX-License-Identifier: MIT +## + [Defines] INF_VERSION = 1.25 BASE_NAME = ShowTables diff --git a/Lessons/Lesson_29/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.c b/Lessons/Lesson_29/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.c index b13aa6c..78e19a7 100644 --- a/Lessons/Lesson_29/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.c +++ b/Lessons/Lesson_29/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.c @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2021, Konstantin Aladyshev + * + * SPDX-License-Identifier: MIT + */ + #include #include diff --git a/Lessons/Lesson_29/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.inf b/Lessons/Lesson_29/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.inf index 013bf4e..da3d49b 100644 --- a/Lessons/Lesson_29/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.inf +++ b/Lessons/Lesson_29/UefiLessonsPkg/SimpleShellApp/SimpleShellApp.inf @@ -1,3 +1,9 @@ +## +# Copyright (c) 2021, Konstantin Aladyshev +# +# SPDX-License-Identifier: MIT +## + [Defines] INF_VERSION = 1.25 BASE_NAME = SimpleShellApp diff --git a/Lessons/Lesson_29/UefiLessonsPkg/SimplestApp/SimplestApp.c b/Lessons/Lesson_29/UefiLessonsPkg/SimplestApp/SimplestApp.c index 8bdf500..e46a2c5 100644 --- a/Lessons/Lesson_29/UefiLessonsPkg/SimplestApp/SimplestApp.c +++ b/Lessons/Lesson_29/UefiLessonsPkg/SimplestApp/SimplestApp.c @@ -1,3 +1,9 @@ +/* + * Copyright (c) 2021, Konstantin Aladyshev + * + * SPDX-License-Identifier: MIT + */ + EFI_STATUS EFIAPI UefiMain ( diff --git a/Lessons/Lesson_29/UefiLessonsPkg/SimplestApp/SimplestApp.inf b/Lessons/Lesson_29/UefiLessonsPkg/SimplestApp/SimplestApp.inf index 7d4bae2..5f4f0a1 100644 --- a/Lessons/Lesson_29/UefiLessonsPkg/SimplestApp/SimplestApp.inf +++ b/Lessons/Lesson_29/UefiLessonsPkg/SimplestApp/SimplestApp.inf @@ -1,3 +1,9 @@ +## +# Copyright (c) 2021, Konstantin Aladyshev +# +# SPDX-License-Identifier: MIT +## + [Defines] INF_VERSION = 1.25 BASE_NAME = SimplestApp diff --git a/Lessons/Lesson_29/UefiLessonsPkg/UefiLessonsPkg.dec b/Lessons/Lesson_29/UefiLessonsPkg/UefiLessonsPkg.dec index 38048bc..f85c4a3 100644 --- a/Lessons/Lesson_29/UefiLessonsPkg/UefiLessonsPkg.dec +++ b/Lessons/Lesson_29/UefiLessonsPkg/UefiLessonsPkg.dec @@ -1,3 +1,9 @@ +## +# Copyright (c) 2021, Konstantin Aladyshev +# +# SPDX-License-Identifier: MIT +## + [Defines] DEC_SPECIFICATION = 0x00010005 PACKAGE_NAME = UefiLessonsPkg diff --git a/Lessons/Lesson_29/UefiLessonsPkg/UefiLessonsPkg.dsc b/Lessons/Lesson_29/UefiLessonsPkg/UefiLessonsPkg.dsc index 5939fcc..e9fe780 100644 --- a/Lessons/Lesson_29/UefiLessonsPkg/UefiLessonsPkg.dsc +++ b/Lessons/Lesson_29/UefiLessonsPkg/UefiLessonsPkg.dsc @@ -1,3 +1,9 @@ +## +# Copyright (c) 2021, Konstantin Aladyshev +# +# SPDX-License-Identifier: MIT +## + [Defines] DSC_SPECIFICATION = 0x0001001C PLATFORM_GUID = 3db7270f-ffac-4139-90a4-0ae68f3f8167 -- cgit v1.2.3-18-g5258