Skip to content

Commit e8b2bb9

Browse files
committed
generate/seccomp/parse_architecture: Add parisc(64) to parseArch
This was missed in 3238fd2 (Add valid seccomp arch, 2017-04-11, #357). Signed-off-by: W. Trevor King <[email protected]>
1 parent 2f0b832 commit e8b2bb9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

generate/seccomp/parse_architecture.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ func parseArch(arch string) (rspec.Arch, error) {
3939
"mipsel": rspec.ArchMIPSEL,
4040
"mipsel64": rspec.ArchMIPSEL64,
4141
"mipsel64n32": rspec.ArchMIPSEL64N32,
42+
"parisc": rspec.ArchPARISC,
43+
"parisc64": rspec.ArchPARISC64,
4244
"ppc": rspec.ArchPPC,
4345
"ppc64": rspec.ArchPPC64,
4446
"ppc64le": rspec.ArchPPC64LE,

0 commit comments

Comments
 (0)