mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-23 16:53:58 -05:00
x86/asm/entry: Move the arch/x86/syscalls/ definitions to arch/x86/entry/syscalls/
The build time generated syscall definitions are entry code related, move them into the arch/x86/entry/ directory. Cc: Borislav Petkov <bp@alien8.de> Cc: H. Peter Anvin <hpa@zytor.com> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Andy Lutomirski <luto@amacapital.net> Cc: Denys Vlasenko <dvlasenk@redhat.com> Cc: Brian Gerst <brgerst@gmail.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: linux-kernel@vger.kernel.org Signed-off-by: Ingo Molnar <mingo@kernel.org>
This commit is contained in:
parent
d36f947904
commit
1f57d5d85b
7 changed files with 4 additions and 4 deletions
|
@ -181,7 +181,7 @@ archscripts: scripts_basic
|
||||||
# Syscall table generation
|
# Syscall table generation
|
||||||
|
|
||||||
archheaders:
|
archheaders:
|
||||||
$(Q)$(MAKE) $(build)=arch/x86/syscalls all
|
$(Q)$(MAKE) $(build)=arch/x86/entry/syscalls all
|
||||||
|
|
||||||
archprepare:
|
archprepare:
|
||||||
ifeq ($(CONFIG_KEXEC_FILE),y)
|
ifeq ($(CONFIG_KEXEC_FILE),y)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
out := $(obj)/../include/generated/asm
|
out := $(obj)/../../include/generated/asm
|
||||||
uapi := $(obj)/../include/generated/uapi/asm
|
uapi := $(obj)/../../include/generated/uapi/asm
|
||||||
|
|
||||||
# Create output directory if not already present
|
# Create output directory if not already present
|
||||||
_dummy := $(shell [ -d '$(out)' ] || mkdir -p '$(out)') \
|
_dummy := $(shell [ -d '$(out)' ] || mkdir -p '$(out)') \
|
|
@ -212,5 +212,5 @@ EOF
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
(ignore_list && syscall_list $(dirname $0)/../arch/x86/syscalls/syscall_32.tbl) | \
|
(ignore_list && syscall_list $(dirname $0)/../arch/x86/entry/syscalls/syscall_32.tbl) | \
|
||||||
$* -E -x c - > /dev/null
|
$* -E -x c - > /dev/null
|
||||||
|
|
Loading…
Add table
Reference in a new issue