Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions completions/bash/oci-runtime-tool
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,8 @@ __oci-runtime-tool_complete_seccomp_arches() {
ppc64le
s390
s390x
parisc
parisc64
" -- "$cur" ) )
}

Expand Down
2 changes: 2 additions & 0 deletions validate/validate.go
Original file line number Diff line number Diff line change
Expand Up @@ -572,6 +572,8 @@ func (v *Validator) CheckSeccomp() (msgs []string) {
case rspec.ArchPPC64LE:
case rspec.ArchS390:
case rspec.ArchS390X:
case rspec.ArchPARISC:
case rspec.ArchPARISC64:
default:
msgs = append(msgs, fmt.Sprintf("seccomp architecture %q is invalid", s.Architectures[index]))
}
Expand Down