chroot: `setSeccomp` add support for `ArchPARISC(64)` and `ArchRISCV64`
Signed-off-by: Michal Biesek <michalbiesek@gmail.com>
This commit is contained in:
parent
795c15532d
commit
5643a7fa8c
|
@ -79,9 +79,11 @@ func setSeccomp(spec *specs.Spec) error {
|
|||
case specs.ArchS390X:
|
||||
return libseccomp.ArchS390X
|
||||
case specs.ArchPARISC:
|
||||
/* fallthrough */ /* for now */
|
||||
return libseccomp.ArchPARISC
|
||||
case specs.ArchPARISC64:
|
||||
/* fallthrough */ /* for now */
|
||||
return libseccomp.ArchPARISC64
|
||||
case specs.ArchRISCV64:
|
||||
return libseccomp.ArchRISCV64
|
||||
default:
|
||||
logrus.Errorf("unmappable arch %v", specArch)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue