diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2021-05-17 10:38:10 +0300 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2021-05-20 16:03:58 +0300 |
commit | 6218d0f6b8dece1f2e82f0a47a0e6b8ecb631ef6 (patch) | |
tree | 1910b09602125fb2b47a9243a2001b26a80b4f8e /arch/x86/include/asm/Kbuild | |
parent | 2e958a8a510d956ec8528f0bd20e309b5bb5156c (diff) | |
download | linux-6218d0f6b8dece1f2e82f0a47a0e6b8ecb631ef6.tar.xz |
x86/syscalls: Switch to generic syscalltbl.sh
Many architectures duplicate similar shell scripts.
Convert x86 and UML to use scripts/syscalltbl.sh. The generic script
generates seperate headers for x86/64 and x86/x32 syscalls, while the x86
specific script coalesced them into one. Adjust the code accordingly.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/r/20210517073815.97426-3-masahiroy@kernel.org
Diffstat (limited to 'arch/x86/include/asm/Kbuild')
-rw-r--r-- | arch/x86/include/asm/Kbuild | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/include/asm/Kbuild b/arch/x86/include/asm/Kbuild index b19ec8282d50..1e51650b79d7 100644 --- a/arch/x86/include/asm/Kbuild +++ b/arch/x86/include/asm/Kbuild @@ -3,6 +3,7 @@ generated-y += syscalls_32.h generated-y += syscalls_64.h +generated-y += syscalls_x32.h generated-y += unistd_32_ia32.h generated-y += unistd_64_x32.h generated-y += xen-hypercalls.h |