It's good to have SPDX identifiers in all files as the Linux kernel developers are working to add these identifiers to all files.
Update the src/tests/ files with the correct SPDX license identifier based on the license text of the project or based on the license in the file itself. The SPDX identifier is a legally binding shorthand, which can be used instead of the full boiler plate text. Signed-off-by: Greg Kroah-Hartman <[email protected]> --- src/tests/netns.sh | 1 + src/tests/qemu/init.c | 1 + 2 files changed, 2 insertions(+) diff --git a/src/tests/netns.sh b/src/tests/netns.sh index 8118b024aee3..9296cc7b502c 100755 --- a/src/tests/netns.sh +++ b/src/tests/netns.sh @@ -1,4 +1,5 @@ #!/bin/bash +# SPDX-License-Identifier: GPL-2.0 # Copyright (C) 2015-2017 Jason A. Donenfeld <[email protected]>. All Rights Reserved. diff --git a/src/tests/qemu/init.c b/src/tests/qemu/init.c index 8bccf3cb9857..0b8efe277271 100644 --- a/src/tests/qemu/init.c +++ b/src/tests/qemu/init.c @@ -1,3 +1,4 @@ +/* SPDX-License-Identifier: GPL-2.0 */ /* Copyright (C) 2015-2017 Jason A. Donenfeld <[email protected]>. All Rights Reserved. */ #define _GNU_SOURCE -- 2.15.1 _______________________________________________ WireGuard mailing list [email protected] https://lists.zx2c4.com/mailman/listinfo/wireguard
