AArch64: Add support for AArch64 to the syscall interface
This patch adds support for AArch64 to the syscall interface. The kernel implementation exports a set of canonical syscalls, therefore some of the userspace exported syscalls are implemented as stubs based on the canonical set. Change-Id: Ia965d71e97769b8be9d7655193fc40303964c4df Signed-off-by: Serban Constantinescu <serban.constantinescu@arm.com>
This commit is contained in:

committed by
Elliott Hughes

parent
07d3c6cecc
commit
feaa89a1bc
@@ -2,7 +2,7 @@
|
||||
|
||||
import sys, os, commands, string
|
||||
|
||||
all_arches = [ "arm", "mips", "x86", "x86_64" ]
|
||||
all_arches = [ "aarch64", "arm", "mips", "x86", "x86_64" ]
|
||||
|
||||
# basic debugging trace support
|
||||
# call D_setlevel to set the verbosity level
|
||||
|
Reference in New Issue
Block a user