vmm: Enable pty console on AArch64
Allowed syscall "SYS_readlinkat" on AArch64 which is required by pty. Signed-off-by: Michael Zhao <michael.zhao@arm.com>
This commit is contained in:
parent
8a22b2987f
commit
1a7a76511f
1 changed files with 2 additions and 0 deletions
|
|
@ -359,6 +359,8 @@ fn vmm_thread_rules() -> Result<Vec<SyscallRuleSet>, Error> {
|
|||
allow_syscall(libc::SYS_readv),
|
||||
#[cfg(target_arch = "x86_64")]
|
||||
allow_syscall(libc::SYS_readlink),
|
||||
#[cfg(target_arch = "aarch64")]
|
||||
allow_syscall(libc::SYS_readlinkat),
|
||||
allow_syscall(libc::SYS_recvfrom),
|
||||
allow_syscall(libc::SYS_recvmsg),
|
||||
allow_syscall(libc::SYS_restart_syscall),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue