From: Jules Maselbas <jmaselbas@kalray.eu> To: Ahmad Fatoum <a.fatoum@pengutronix.de> Cc: barebox@lists.infradead.org Subject: Re: [PATCH 10/30] efi: use SPDX-License-Identifier where appropriate Date: Tue, 23 Nov 2021 09:52:20 +0100 [thread overview] Message-ID: <20211123085220.GB15878@tellis.lin.mbt.kalray.eu> (raw) In-Reply-To: <20211122084732.2597109-11-a.fatoum@pengutronix.de> On Mon, Nov 22, 2021 at 09:47:12AM +0100, Ahmad Fatoum wrote: > Couple of files lack an explicit embedded license or cotnain s/cotnain/contain/ > boilerplate. Replace with the appropriate SPDX-License-Identifier. > > Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> > --- > common/efi/devicepath.c | 2 ++ > common/efi/guid.c | 2 ++ > common/efi/payload/image.c | 11 +---------- > common/efi/payload/init.c | 11 +---------- > include/efi/debug_ll.h | 1 + > include/efi/efi-device.h | 1 + > include/efi/efi.h | 1 + > 7 files changed, 9 insertions(+), 20 deletions(-) > > diff --git a/common/efi/devicepath.c b/common/efi/devicepath.c > index f17b9294cc1b..6341ca005ba5 100644 > --- a/common/efi/devicepath.c > +++ b/common/efi/devicepath.c > @@ -1,3 +1,5 @@ > +// SPDX-License-Identifier: GPL-2.0-only > + > #include <common.h> > #include <efi.h> > #include <malloc.h> > diff --git a/common/efi/guid.c b/common/efi/guid.c > index fbe96ecd048c..f1a918f91e19 100644 > --- a/common/efi/guid.c > +++ b/common/efi/guid.c > @@ -1,3 +1,5 @@ > +// SPDX-License-Identifier: GPL-2.0-only > + > #include <common.h> > #include <efi.h> > > diff --git a/common/efi/payload/image.c b/common/efi/payload/image.c > index 3c55a457eae3..53b444eef60f 100644 > --- a/common/efi/payload/image.c > +++ b/common/efi/payload/image.c > @@ -1,17 +1,8 @@ > +// SPDX-License-Identifier: GPL-2.0-only > /* > * image.c - barebox EFI payload support > * > * Copyright (c) 2014 Sascha Hauer <s.hauer@pengutronix.de>, Pengutronix > - * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License version 2 > - * as published by the Free Software Foundation. > - * > - * This program is distributed in the hope that it will be useful, > - * but WITHANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > - * > */ > > #include <clock.h> > diff --git a/common/efi/payload/init.c b/common/efi/payload/init.c > index 88d0bfa939ec..0e672a6b56d2 100644 > --- a/common/efi/payload/init.c > +++ b/common/efi/payload/init.c > @@ -1,17 +1,8 @@ > +// SPDX-License-Identifier: GPL-2.0-only > /* > * init.c - barebox EFI payload support > * > * Copyright (c) 2014 Sascha Hauer <s.hauer@pengutronix.de>, Pengutronix > - * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License version 2 > - * as published by the Free Software Foundation. > - * > - * This program is distributed in the hope that it will be useful, > - * but WITHANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > - * > */ > > #include <linux/linkage.h> > diff --git a/include/efi/debug_ll.h b/include/efi/debug_ll.h > index 4ca72de312af..905f1c43cd23 100644 > --- a/include/efi/debug_ll.h > +++ b/include/efi/debug_ll.h > @@ -1,3 +1,4 @@ > +/* SPDX-License-Identifier: GPL-2.0-only */ > #ifndef __MACH_DEBUG_LL_H__ > #define __MACH_DEBUG_LL_H__ > > diff --git a/include/efi/efi-device.h b/include/efi/efi-device.h > index 5ec59a8a2ddd..cd8a374c32fe 100644 > --- a/include/efi/efi-device.h > +++ b/include/efi/efi-device.h > @@ -1,3 +1,4 @@ > +/* SPDX-License-Identifier: GPL-2.0-only */ > #ifndef __EFI_EFI_DEVICE_H > #define __EFI_EFI_DEVICE_H > > diff --git a/include/efi/efi.h b/include/efi/efi.h > index 648afb9ec5a7..c7679b4b8f28 100644 > --- a/include/efi/efi.h > +++ b/include/efi/efi.h > @@ -1,3 +1,4 @@ > +/* SPDX-License-Identifier: GPL-2.0-only */ > #ifndef __MACH_EFI_H > #define __MACH_EFI_H > > -- > 2.30.2 > > > _______________________________________________ > barebox mailing list > barebox@lists.infradead.org > http://lists.infradead.org/mailman/listinfo/barebox > > > To declare a filtering error, please use the following link : https://www.security-mail.net/reporter.php?mid=17c3a.619b5a65.16acd.0&r=jmaselbas%40kalray.eu&s=barebox-bounces%2Bjmaselbas%3Dkalray.eu%40lists.infradead.org&o=%5BPATCH+10%2F30%5D+efi%3A+use+SPDX-License-Identifier+where+appropriate&verdict=C&c=b22b249ef71fa4af3fb70743334b7eff7aaf4614 > _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2021-11-23 8:54 UTC|newest] Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-11-22 8:47 [PATCH 00/30] efi: refactor for upcoming loader support Ahmad Fatoum 2021-11-22 8:47 ` [PATCH 01/30] fs: remove useless AT_FDCWD references Ahmad Fatoum 2021-11-22 8:47 ` [PATCH 02/30] fs: remove unused struct node_d in struct dir Ahmad Fatoum 2021-11-22 8:47 ` [PATCH 03/30] block : efi: rename driver variable from efi_fs_driver to efi_bio_driver Ahmad Fatoum 2021-11-22 8:47 ` [PATCH 04/30] include: <linux/types.h>: wrap in #ifndef __ASSEMBLY__ Ahmad Fatoum 2021-11-22 8:47 ` [PATCH 05/30] hw_random: stm32: propagate error codes from rng read Ahmad Fatoum 2021-11-22 8:47 ` [PATCH 06/30] efi: align LOAD_FILE_PROTOCOL_GUID's name with other PROTOCOL_GUIDs Ahmad Fatoum 2021-11-22 8:47 ` [PATCH 07/30] asm-generic: move sync_caches_for_execution declaration to <asm/cache.h> Ahmad Fatoum 2021-11-22 8:47 ` [PATCH 08/30] common: move EFI code into new efi/ top level directory Ahmad Fatoum 2021-11-23 8:55 ` Jules Maselbas 2021-11-22 8:47 ` [PATCH 09/30] serial: efi-stdio: move efi-stdio.h header to central location Ahmad Fatoum 2021-11-22 8:47 ` [PATCH 10/30] efi: use SPDX-License-Identifier where appropriate Ahmad Fatoum 2021-11-23 8:52 ` Jules Maselbas [this message] 2021-11-22 8:47 ` [PATCH 11/30] drivers: efi: move Kconfig options to new menu Ahmad Fatoum 2021-11-22 8:47 ` [PATCH 12/30] efi: factor out errno translation Ahmad Fatoum 2021-11-22 8:47 ` [PATCH 13/30] efi: rename <efi/efi.h> to <efi/efi-payload.h> Ahmad Fatoum 2021-11-22 8:47 ` [PATCH 14/30] efi: centralize efivarfs_parse_filename Ahmad Fatoum 2021-11-22 8:47 ` [PATCH 15/30] kbuild: force 16-bit wchar_t treewide Ahmad Fatoum 2021-11-22 8:47 ` [PATCH 16/30] include: <linux/nls.h>: remove duplicate wchar_t typedef Ahmad Fatoum 2021-11-22 8:47 ` [PATCH 17/30] lib: wchar: add wctomb and mbtowc Ahmad Fatoum 2021-11-22 8:47 ` [PATCH 18/30] lib: implement wcsnlen Ahmad Fatoum 2021-11-22 8:47 ` [PATCH 19/30] vsprintf: add optional support for %ls format modifier Ahmad Fatoum 2021-11-22 8:47 ` [PATCH 20/30] libfile: null-terminate read_file of wchar_t buffer Ahmad Fatoum 2021-11-22 8:47 ` [PATCH 21/30] commands: echo: add wide file output via wecho alias Ahmad Fatoum 2021-11-22 8:47 ` [PATCH 22/30] efi: make efi_main __noreturn Ahmad Fatoum 2021-11-22 8:47 ` [PATCH 23/30] efi: define and use new EFI_ERROR_MASK macro Ahmad Fatoum 2021-11-22 8:47 ` [PATCH 24/30] common: move CONFIG_ELF into General Settings Ahmad Fatoum 2021-11-22 8:47 ` [PATCH 25/30] efi: don't zero executable buffer before freeing Ahmad Fatoum 2021-11-22 8:47 ` [PATCH 26/30] partitions: efi: move header to central location Ahmad Fatoum 2021-11-22 8:47 ` [PATCH 27/30] efi: print early efi_main string on CONFIG_DEBUG_LL=y Ahmad Fatoum 2021-11-22 8:47 ` [PATCH 28/30] ARM64: board-dt-2nd: remove no longer needed noinline function split Ahmad Fatoum 2021-11-22 8:47 ` [PATCH 29/30] bus: acpi: register bus even if without ACPI EFI table Ahmad Fatoum 2021-11-22 8:47 ` [PATCH 30/30] efi: guid: fix typos Ahmad Fatoum 2021-11-25 7:44 ` [PATCH 00/30] efi: refactor for upcoming loader support Sascha Hauer
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20211123085220.GB15878@tellis.lin.mbt.kalray.eu \ --to=jmaselbas@kalray.eu \ --cc=a.fatoum@pengutronix.de \ --cc=barebox@lists.infradead.org \ --subject='Re: [PATCH 10/30] efi: use SPDX-License-Identifier where appropriate' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox