mirror of
https://github.com/torvalds/linux.git
synced 2024-10-31 17:21:49 +00:00
10b63956fc
Plumb the UAPI Kbuilds into the user header installation and checking system. As the headers are split the entries will be transferred across from the old Kbuild files to the UAPI Kbuild files. The changes made in this commit are: (1) Exported generated files (of which there are currently four) are moved to uapi/ directories under the appropriate generated/ directory, thus we get: include/generated/uapi/linux/version.h arch/x86/include/generated/uapi/asm/unistd_32.h arch/x86/include/generated/uapi/asm/unistd_64.h arch/x86/include/generated/uapi/asm/unistd_x32.h These paths were added to the build as -I flags in a previous patch. (2) scripts/Makefile.headersinst is now given the UAPI path to install from rather than the old path. It then determines the old path from that and includes that Kbuild also if it exists, thus permitting the headers to exist in either directory during the changeover. I also renamed the "install" variable to "installdir" as it refers to a directory not the install program. (3) scripts/headers_install.pl is altered to take a list of source file paths instead of just their names so that the makefile can tell it exactly where to find each file. For the moment, files can be obtained from one of four places for each output directory: .../include/uapi/foo/ .../include/generated/uapi/foo/ .../include/foo/ .../include/generated/foo/ The non-UAPI paths will be dropped later. Signed-off-by: David Howells <dhowells@redhat.com> Acked-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Thomas Gleixner <tglx@linutronix.de> Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com> Acked-by: Dave Jones <davej@redhat.com>
59 lines
1.8 KiB
Makefile
59 lines
1.8 KiB
Makefile
out := $(obj)/../include/generated/asm
|
|
uapi := $(obj)/../include/generated/uapi/asm
|
|
|
|
# Create output directory if not already present
|
|
_dummy := $(shell [ -d '$(out)' ] || mkdir -p '$(out)') \
|
|
$(shell [ -d '$(uapi)' ] || mkdir -p '$(uapi)')
|
|
|
|
syscall32 := $(srctree)/$(src)/syscall_32.tbl
|
|
syscall64 := $(srctree)/$(src)/syscall_64.tbl
|
|
|
|
syshdr := $(srctree)/$(src)/syscallhdr.sh
|
|
systbl := $(srctree)/$(src)/syscalltbl.sh
|
|
|
|
quiet_cmd_syshdr = SYSHDR $@
|
|
cmd_syshdr = $(CONFIG_SHELL) '$(syshdr)' '$<' '$@' \
|
|
'$(syshdr_abi_$(basetarget))' \
|
|
'$(syshdr_pfx_$(basetarget))' \
|
|
'$(syshdr_offset_$(basetarget))'
|
|
quiet_cmd_systbl = SYSTBL $@
|
|
cmd_systbl = $(CONFIG_SHELL) '$(systbl)' $< $@
|
|
|
|
syshdr_abi_unistd_32 := i386
|
|
$(uapi)/unistd_32.h: $(syscall32) $(syshdr)
|
|
$(call if_changed,syshdr)
|
|
|
|
syshdr_abi_unistd_32_ia32 := i386
|
|
syshdr_pfx_unistd_32_ia32 := ia32_
|
|
$(out)/unistd_32_ia32.h: $(syscall32) $(syshdr)
|
|
$(call if_changed,syshdr)
|
|
|
|
syshdr_abi_unistd_x32 := common,x32
|
|
syshdr_offset_unistd_x32 := __X32_SYSCALL_BIT
|
|
$(uapi)/unistd_x32.h: $(syscall64) $(syshdr)
|
|
$(call if_changed,syshdr)
|
|
|
|
syshdr_abi_unistd_64 := common,64
|
|
$(uapi)/unistd_64.h: $(syscall64) $(syshdr)
|
|
$(call if_changed,syshdr)
|
|
|
|
syshdr_abi_unistd_64_x32 := x32
|
|
syshdr_pfx_unistd_64_x32 := x32_
|
|
$(out)/unistd_64_x32.h: $(syscall64) $(syshdr)
|
|
$(call if_changed,syshdr)
|
|
|
|
$(out)/syscalls_32.h: $(syscall32) $(systbl)
|
|
$(call if_changed,systbl)
|
|
$(out)/syscalls_64.h: $(syscall64) $(systbl)
|
|
$(call if_changed,systbl)
|
|
|
|
uapisyshdr-y += unistd_32.h unistd_64.h unistd_x32.h
|
|
syshdr-y += syscalls_32.h
|
|
syshdr-$(CONFIG_X86_64) += unistd_32_ia32.h unistd_64_x32.h
|
|
syshdr-$(CONFIG_X86_64) += syscalls_64.h
|
|
|
|
targets += $(uapisyshdr-y) $(syshdr-y)
|
|
|
|
all: $(addprefix $(uapi)/,$(uapisyshdr-y))
|
|
all: $(addprefix $(out)/,$(syshdr-y))
|