Skip to content

Commit a14aa59

Browse files
igoropaniukMattijs Korpershoek
authored and
Mattijs Korpershoek
committed
avb: move SPDX license identifiers to the first line
Move SPDX license identifiers to the first line, so it conforms to license placement rule [1]: Placement: The SPDX license identifier in kernel files shall be added at the first possible line in a file which can contain a comment. For the majority of files this is the first line, except for scripts which require the '#!PATH_TO_INTERPRETER' in the first line. For those scripts the SPDX identifier goes into the second line. [1] https://www.kernel.org/doc/Documentation/process/license-rules.rst Reviewed-by: Mattijs Korpershoek <[email protected]> Signed-off-by: Igor Opaniuk <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Mattijs Korpershoek <[email protected]>
1 parent c2f72d0 commit a14aa59

File tree

4 files changed

+4
-10
lines changed

4 files changed

+4
-10
lines changed

cmd/avb.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
1+
// SPDX-License-Identifier: GPL-2.0+
22
/*
33
* (C) Copyright 2018, Linaro Limited
4-
*
5-
* SPDX-License-Identifier: GPL-2.0+
64
*/
75

86
#include <avb_verify.h>

common/avb_verify.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1+
// SPDX-License-Identifier: GPL-2.0+
12
/*
23
* (C) Copyright 2018, Linaro Limited
3-
*
4-
* SPDX-License-Identifier: GPL-2.0+
54
*/
65

76
#include <avb_verify.h>

include/avb_verify.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
1+
/* SPDX-License-Identifier: GPL-2.0+ */
22
/*
33
* (C) Copyright 2018, Linaro Limited
4-
*
5-
* SPDX-License-Identifier: GPL-2.0+
64
*/
75

86
#ifndef _AVB_VERIFY_H

test/py/tests/test_android/test_avb.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
# Copyright (c) 2018, Linaro Limited
2-
#
31
# SPDX-License-Identifier: GPL-2.0+
2+
# Copyright (c) 2018, Linaro Limited
43
#
54
# Android Verified Boot 2.0 Test
65

0 commit comments

Comments
 (0)