Commit 65504a47 authored by Michal Simek's avatar Michal Simek

microblaze_mmu_v2: Enable fork syscall for MMU and add fork as vfork for noMMU

Signed-off-by: default avatarMichal Simek <monstr@monstr.eu>
parent d4c1285e
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
#include <linux/linkage.h> #include <linux/linkage.h>
#include <asm/thread_info.h> #include <asm/thread_info.h>
#include <asm/errno.h> #include <linux/errno.h>
#include <asm/entry.h> #include <asm/entry.h>
#include <asm/asm-offsets.h> #include <asm/asm-offsets.h>
#include <asm/registers.h> #include <asm/registers.h>
......
...@@ -2,7 +2,11 @@ ENTRY(sys_call_table) ...@@ -2,7 +2,11 @@ ENTRY(sys_call_table)
.long sys_restart_syscall /* 0 - old "setup()" system call, .long sys_restart_syscall /* 0 - old "setup()" system call,
* used for restarting */ * used for restarting */
.long sys_exit .long sys_exit
.long sys_ni_syscall /* was fork */ #ifdef CONFIG_MMU
.long sys_fork_wrapper
#else
.long sys_ni_syscall
#endif
.long sys_read .long sys_read
.long sys_write .long sys_write
.long sys_open /* 5 */ .long sys_open /* 5 */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment