Rajat Jain has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/39887 )
Change subject: util/lint: Accept "GPL-2.0 WITH Linux-syscall-note" licenses ......................................................................
util/lint: Accept "GPL-2.0 WITH Linux-syscall-note" licenses
The Linux kernel UAPI header files are licensed under /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
Allows files with this license to be included in coreboot. For more details about this particular license:
https://www.kernel.org/doc/html/v4.17/process/license-rules.html https://spdx.org/licenses/Linux-syscall-note.html
Change-Id: I4f0f8d36c637a66a6999a18321fdbc4c42d5751e Signed-off-by: Rajat Jain rajatja@google.com --- M util/lint/lint-000-license-headers 1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/87/39887/1
diff --git a/util/lint/lint-000-license-headers b/util/lint/lint-000-license-headers index 1382d7f..d202cb7 100755 --- a/util/lint/lint-000-license-headers +++ b/util/lint/lint-000-license-headers @@ -105,6 +105,7 @@ check_for_license 'SPDX-License-Identifier: BSD-3-Clause' check_for_license 'SPDX-License-Identifier: GPL-2.0-only' check_for_license 'SPDX-License-Identifier: GPL-2.0-or-later' +check_for_license 'SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note' check_for_license 'SPDX-License-Identifier: GPL-3.0-only' check_for_license 'SPDX-License-Identifier: GPL-3.0-or-later' check_for_license 'SPDX-License-Identifier: ISC'