diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2018-05-07 20:38:24 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-05-10 20:38:34 -0400 |
commit | e75ac7039a51becdb80ea585443e9c2fdb58f716 (patch) | |
tree | b7b7fa9fe6ed9a1508163add858bedf9e05ad07a /tools | |
parent | 7f1cb1d588789585aa962250fda4c3e095901c5b (diff) | |
download | u-boot-e75ac7039a51becdb80ea585443e9c2fdb58f716.tar.gz u-boot-e75ac7039a51becdb80ea585443e9c2fdb58f716.tar.xz u-boot-e75ac7039a51becdb80ea585443e9c2fdb58f716.zip |
tools/file2include: create Linux style SPDX header
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>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/file2include.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/file2include.c b/tools/file2include.c index 7ca45c8339..e602f937f1 100644 --- a/tools/file2include.c +++ b/tools/file2include.c @@ -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); |