]> git.sur5r.net Git - u-boot/commitdiff
tools/file2include: create Linux style SPDX header
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Mon, 7 May 2018 18:38:24 +0000 (20:38 +0200)
committerTom Rini <trini@konsulko.com>
Fri, 11 May 2018 00:38:34 +0000 (20:38 -0400)
file2include is used to convert a binary file to a C include.
With the patch the SPDX header is written to the first line as
expected by scripts/checkpatch.pl.

Cf. https://www.kernel.org/doc/html/v4.16/process/license-rules.html

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Fabio Estevam <fabio.estevam@nxp.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
tools/file2include.c

index 7ca45c8339a252129aa538dabc65446ee4948708..e602f937f15603f94212980219151ed39c829e3c 100644 (file)
@@ -62,12 +62,11 @@ int main(int argc, char *argv[])
        count = fread(buf, 1, count, file);
 
        /* Generate output */
+       printf("/* SPDX-License-Identifier: GPL-2.0+ */\n");
        printf("/*\n");
        printf(" *  Non-zero %u byte strings of a disk image\n", BLOCK_SIZE);
        printf(" *\n");
        printf(" *  Generated with tools/file2include\n");
-       printf(" *\n");
-       printf(" *  SPDX-License-Identifier:    GPL-2.0+\n");
        printf(" */\n\n");
        printf("#define EFI_ST_DISK_IMG { 0x%08zx, { \\\n", count);