OpenRISC: System calls
authorJonas Bonn <jonas@southpole.se>
Sat, 4 Jun 2011 19:26:51 +0000 (22:26 +0300)
committerJonas Bonn <jonas@southpole.se>
Fri, 22 Jul 2011 16:46:34 +0000 (18:46 +0200)
commit09abb90107202d3b18cf5a69076a1d05d11244e6
treefc7ccb4421c4471cc24a8cdab7264ff13ba44b20
parent816ebaa8b6ea8f97515a40e25076f297d0304611
OpenRISC: System calls

The OpenRISC Linux kernel conforms to the "generic" syscall interface which
contains only the reduced set of syscalls deemed necessary for new
architectures.  Unfortunately, the uClibc port for OpenRISC does not fully
support this reduced set; as such, an additional patch available out-of-tree
needs to be applied to the kernel in order to use the current uClibc.  This
is just a temporary measure until the libc port can be straightened out; it
is likely that OpenRISC will make the transition to glibc shortly where the
generic syscall interface is better supported.

Signed-off-by: Jonas Bonn <jonas@southpole.se>
Reviewed-by: Arnd Bergmann <arnd@arndb.de>
arch/openrisc/include/asm/syscall.h [new file with mode: 0644]
arch/openrisc/include/asm/syscalls.h [new file with mode: 0644]
arch/openrisc/include/asm/unistd.h [new file with mode: 0644]
arch/openrisc/kernel/sys_call_table.c [new file with mode: 0644]
arch/openrisc/kernel/sys_or32.c [new file with mode: 0644]