Skip to content

Commit

Permalink
Merge pull request moby#48455 from gdams/seccomp
Browse files Browse the repository at this point in the history
seccomp: add riscv64 mapping to seccomp_linux.go
  • Loading branch information
thaJeztah authored Sep 10, 2024
2 parents 29f4a79 + 1161b79 commit e5a088d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions profiles/seccomp/seccomp_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ var nativeToSeccomp = map[string]specs.Arch{
"ppc": specs.ArchPPC,
"ppc64": specs.ArchPPC64,
"ppc64le": specs.ArchPPC64LE,
"riscv64": specs.ArchRISCV64,
"s390": specs.ArchS390,
"s390x": specs.ArchS390X,
}
Expand All @@ -57,6 +58,7 @@ var goToNative = map[string]string{
"ppc": "ppc",
"ppc64": "ppc64",
"ppc64le": "ppc64le",
"riscv64": "riscv64",
"s390": "s390",
"s390x": "s390x",
}
Expand Down

0 comments on commit e5a088d

Please sign in to comment.