summaryrefslogtreecommitdiffstats
path: root/linux-user/microblaze/Makefile.objs
diff options
context:
space:
mode:
authorLaurent Vivier2020-03-10 11:33:49 +0100
committerLaurent Vivier2020-03-20 16:02:00 +0100
commitddf0c4cdfd3839c5dd3dfcd51770bc4639c1fd37 (patch)
tree0698ba02fb7fb9b58c62b38f80045b28056e212f /linux-user/microblaze/Makefile.objs
parentlinux-user, sh4: add syscall table generation support (diff)
downloadqemu-ddf0c4cdfd3839c5dd3dfcd51770bc4639c1fd37.tar.gz
qemu-ddf0c4cdfd3839c5dd3dfcd51770bc4639c1fd37.tar.xz
qemu-ddf0c4cdfd3839c5dd3dfcd51770bc4639c1fd37.zip
linux-user, microblaze: add syscall table generation support
Copy syscall.tbl and syscallhdr.sh from linux/arch/microblaze/kernel/syscalls v5.5 Update syscallhdr.sh to generate QEMU syscall_nr.h Signed-off-by: Laurent Vivier <laurent@vivier.eu> Reviewed-by: Taylor Simpson <tsimpson@quicinc.com> Message-Id: <20200310103403.3284090-8-laurent@vivier.eu> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user/microblaze/Makefile.objs')
-rw-r--r--linux-user/microblaze/Makefile.objs5
1 files changed, 5 insertions, 0 deletions
diff --git a/linux-user/microblaze/Makefile.objs b/linux-user/microblaze/Makefile.objs
new file mode 100644
index 0000000000..bb8b318dda
--- /dev/null
+++ b/linux-user/microblaze/Makefile.objs
@@ -0,0 +1,5 @@
+generated-files-y += linux-user/microblaze/syscall_nr.h
+
+syshdr := $(SRC_PATH)/linux-user/microblaze/syscallhdr.sh
+%/syscall_nr.h: $(SRC_PATH)/linux-user/microblaze/syscall.tbl $(syshdr)
+ $(call quiet-command, sh $(syshdr) $< $@ $(TARGET_SYSTBL_ABI),"GEN","$@")