diff options
Diffstat (limited to 'arch/x86/tools')
| -rw-r--r-- | arch/x86/tools/Makefile | 1 | ||||
| -rw-r--r-- | arch/x86/tools/distill.awk | 1 | ||||
| -rw-r--r-- | arch/x86/tools/gen-insn-attr-x86.awk | 1 | ||||
| -rw-r--r-- | arch/x86/tools/relocs.c | 1 | ||||
| -rw-r--r-- | arch/x86/tools/relocs.h | 1 | ||||
| -rw-r--r-- | arch/x86/tools/relocs_32.c | 1 | ||||
| -rw-r--r-- | arch/x86/tools/relocs_64.c | 1 | ||||
| -rw-r--r-- | arch/x86/tools/relocs_common.c | 1 | 
8 files changed, 8 insertions, 0 deletions
| diff --git a/arch/x86/tools/Makefile b/arch/x86/tools/Makefile index 604a37efd4d5..972b8e8d939c 100644 --- a/arch/x86/tools/Makefile +++ b/arch/x86/tools/Makefile @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0  PHONY += posttest  ifeq ($(KBUILD_VERBOSE),1) diff --git a/arch/x86/tools/distill.awk b/arch/x86/tools/distill.awk index c13c0ee48ab4..e0edeccc1429 100644 --- a/arch/x86/tools/distill.awk +++ b/arch/x86/tools/distill.awk @@ -1,4 +1,5 @@  #!/bin/awk -f +# SPDX-License-Identifier: GPL-2.0  # Usage: objdump -d a.out | awk -f distill.awk | ./test_get_len  # Distills the disassembly as follows:  # - Removes all lines except the disassembled instructions. diff --git a/arch/x86/tools/gen-insn-attr-x86.awk b/arch/x86/tools/gen-insn-attr-x86.awk index a3d2c62fd805..b02a36b2c14f 100644 --- a/arch/x86/tools/gen-insn-attr-x86.awk +++ b/arch/x86/tools/gen-insn-attr-x86.awk @@ -1,4 +1,5 @@  #!/bin/awk -f +# SPDX-License-Identifier: GPL-2.0  # gen-insn-attr-x86.awk: Instruction attribute table generator  # Written by Masami Hiramatsu <[email protected]>  # diff --git a/arch/x86/tools/relocs.c b/arch/x86/tools/relocs.c index 73eb7fd4aec4..5d73c443e778 100644 --- a/arch/x86/tools/relocs.c +++ b/arch/x86/tools/relocs.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0  /* This is included from relocs_32/64.c */  #define ElfW(type)		_ElfW(ELF_BITS, type) diff --git a/arch/x86/tools/relocs.h b/arch/x86/tools/relocs.h index 1d23bf953a4a..43c83c0fd22c 100644 --- a/arch/x86/tools/relocs.h +++ b/arch/x86/tools/relocs.h @@ -1,3 +1,4 @@ +/* SPDX-License-Identifier: GPL-2.0 */  #ifndef RELOCS_H  #define RELOCS_H diff --git a/arch/x86/tools/relocs_32.c b/arch/x86/tools/relocs_32.c index b2ade2bb4162..9442ff78be83 100644 --- a/arch/x86/tools/relocs_32.c +++ b/arch/x86/tools/relocs_32.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0  #include "relocs.h"  #define ELF_BITS 32 diff --git a/arch/x86/tools/relocs_64.c b/arch/x86/tools/relocs_64.c index 56b61b743c4c..9029cb619cb1 100644 --- a/arch/x86/tools/relocs_64.c +++ b/arch/x86/tools/relocs_64.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0  #include "relocs.h"  #define ELF_BITS 64 diff --git a/arch/x86/tools/relocs_common.c b/arch/x86/tools/relocs_common.c index acab636bcb34..6634352a20bc 100644 --- a/arch/x86/tools/relocs_common.c +++ b/arch/x86/tools/relocs_common.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0  #include "relocs.h"  void die(char *fmt, ...) |