diff options
author | Konstantin Aladyshev <aladyshev22@gmail.com> | 2021-10-30 00:44:34 +0300 |
---|---|---|
committer | Konstantin Aladyshev <aladyshev22@gmail.com> | 2021-10-30 00:44:34 +0300 |
commit | 43a54284ee4bdda6d9ffdb6348d7c2d79c9d09f1 (patch) | |
tree | 5f7ae6aaf73de30ccb23c61a11b1303eba34e95e /scripts | |
parent | 18f21fc0a341f026de182027937cc7a5f0e0f6cf (diff) | |
download | UEFI-Lessons-43a54284ee4bdda6d9ffdb6348d7c2d79c9d09f1.tar.gz UEFI-Lessons-43a54284ee4bdda6d9ffdb6348d7c2d79c9d09f1.tar.bz2 UEFI-Lessons-43a54284ee4bdda6d9ffdb6348d7c2d79c9d09f1.zip |
Add license header to source files
Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/createNewApp.sh | 5 | ||||
-rw-r--r-- | scripts/createNewDriver.sh | 5 | ||||
-rw-r--r-- | scripts/replace_guids.py | 6 | ||||
-rwxr-xr-x | scripts/run_gdb.sh | 5 | ||||
-rwxr-xr-x | scripts/run_gdb_ovmf.sh | 5 |
5 files changed, 26 insertions, 0 deletions
diff --git a/scripts/createNewApp.sh b/scripts/createNewApp.sh index 9fde27f..a411a70 100755 --- a/scripts/createNewApp.sh +++ b/scripts/createNewApp.sh @@ -1,4 +1,9 @@ #!/bin/bash +## +# Copyright (c) 2021, Konstantin Aladyshev <aladyshev22@gmail.com> +# +# SPDX-License-Identifier: MIT +## # This is a simple script that creates a basic structure for your new UEFI application # Put this script in your edk2 folder and run it with 1 argument - your new application name diff --git a/scripts/createNewDriver.sh b/scripts/createNewDriver.sh index 5c05916..1fa3c47 100644 --- a/scripts/createNewDriver.sh +++ b/scripts/createNewDriver.sh @@ -1,4 +1,9 @@ #!/bin/bash +## +# Copyright (c) 2021, Konstantin Aladyshev <aladyshev22@gmail.com> +# +# SPDX-License-Identifier: MIT +## # This is a simple script that creates a basic structure for your new UEFI driver # Put this script in your edk2 folder and run it with 1 argument - your new driver name diff --git a/scripts/replace_guids.py b/scripts/replace_guids.py index a5aefb0..632aa47 100644 --- a/scripts/replace_guids.py +++ b/scripts/replace_guids.py @@ -1,3 +1,9 @@ +## +# Copyright (c) 2021, Konstantin Aladyshev <aladyshev22@gmail.com> +# +# SPDX-License-Identifier: MIT +## + from shutil import copyfile GUIDS_FILE_PATH = "Build/OvmfX64/DEBUG_GCC5/FV/Guid.xref" diff --git a/scripts/run_gdb.sh b/scripts/run_gdb.sh index 1506b17..4845a70 100755 --- a/scripts/run_gdb.sh +++ b/scripts/run_gdb.sh @@ -1,4 +1,9 @@ #!/bin/bash +## +# Copyright (c) 2021, Konstantin Aladyshev <aladyshev22@gmail.com> +# +# SPDX-License-Identifier: MIT +## ##### Controllable parameters ##### QEMU_SHARED_FOLDER=~/UEFI_disk diff --git a/scripts/run_gdb_ovmf.sh b/scripts/run_gdb_ovmf.sh index fc283d0..4205a39 100755 --- a/scripts/run_gdb_ovmf.sh +++ b/scripts/run_gdb_ovmf.sh @@ -1,4 +1,9 @@ #!/bin/bash +## +# Copyright (c) 2021, Konstantin Aladyshev <aladyshev22@gmail.com> +# +# SPDX-License-Identifier: MIT +## ##### Controllable parameters ##### QEMU_SHARED_FOLDER=~/UEFI_disk |