diff options
author | Firoz Khan <firoz.khan@linaro.org> | 2018-11-13 11:34:34 +0530 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2018-11-16 08:24:34 +0100 |
commit | 1e17ab5320a654eaf1e4ce121c61e7aa9732805a (patch) | |
tree | 4431d02f938f40455a0f476c846e31bed0595797 /arch/microblaze/Makefile | |
parent | fc06bac35c8c76894028f1c318f99d8165f03cf4 (diff) |
microblaze: generate uapi header and system call table files
System call table generation script must be run to gener-
ate unistd_32.h and syscall_table.h files. This patch will
have changes which will invokes the script.
This patch will generate unistd_32.h and syscall_table.h
files by the syscall table generation script invoked by
microblaze/Makefile and the generated files against the
removed files must be identical.
The generated uapi header file will be included in uapi/-
asm/unistd.h and generated system call table header file
will be included by kernel/syscall_table.S file.
Signed-off-by: Firoz Khan <firoz.khan@linaro.org>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'arch/microblaze/Makefile')
-rw-r--r-- | arch/microblaze/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/microblaze/Makefile b/arch/microblaze/Makefile index 0823d291fbeb..ddb251aab484 100644 --- a/arch/microblaze/Makefile +++ b/arch/microblaze/Makefile @@ -79,6 +79,9 @@ all: linux.bin archclean: $(Q)$(MAKE) $(clean)=$(boot) +archheaders: + $(Q)$(MAKE) $(build)=arch/microblaze/kernel/syscalls all + linux.bin linux.bin.gz linux.bin.ub: vmlinux $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ |