From 27bb975b4ce0721f5a4ab702202801c333ef2b9d Mon Sep 17 00:00:00 2001 From: Nuno Sa Date: Fri, 3 Feb 2023 10:39:35 +0100 Subject: [PATCH] treewide: add spdx license header Added the header at least for all the scripts. (not sure if it makes sense to add it for config files) Signed-off-by: Nuno Sa --- svn_helper | 2 ++ sync_db.sh | 2 ++ vscode/build.sh | 2 ++ 3 files changed, 6 insertions(+) diff --git a/svn_helper b/svn_helper index ce5f615..7e1f736 100755 --- a/svn_helper +++ b/svn_helper @@ -1,5 +1,7 @@ #!/bin/sh +# SPDX-License-Identifier: GPL-2.0 + #AUTHOR: Nuno Sá #Brief: This script is intended to be used as an helper to svn and automatize some operations that i use more #as selecting all the files to commit instead of selecting one by one (based on a list with files to ignore). All the operations diff --git a/sync_db.sh b/sync_db.sh index 96d42d7..e0adc1c 100755 --- a/sync_db.sh +++ b/sync_db.sh @@ -1,5 +1,7 @@ #!/bin/bash +# SPDX-License-Identifier: GPL-2.0 + #Simple script which starts dropbox, waits for a specific file to sync #and stops dropbox. It can be handy or things like setting triggers in #keepass for assuring syn on the database... diff --git a/vscode/build.sh b/vscode/build.sh index e2a0dcc..bfaf43b 100755 --- a/vscode/build.sh +++ b/vscode/build.sh @@ -1,5 +1,7 @@ #!/bin/bash +# SPDX-License-Identifier: GPL-2.0 + # this script is intended to build the linux kernel under vscode. It can be called # from tasks.json with the proper parameters. As I use this to mainly compile ADI # kernel, I try to find a proper Vivado installation to get the toolchain. However,