8000 `ch-image --force=seccomp` fix for PPC by reidpr · Pull Request #1663 · hpc/charliecloud · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on May 27, 2025. It is now read-only.

ch-image --force=seccomp fix for PPC #1663

Merged
merged 1 commit into from
Jun 1, 2023
Merged
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: 1 addition & 1 deletion bin/ch_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ struct bind BINDS_DEFAULT[] = {
int SECCOMP_ARCHS[] = { AUDIT_ARCH_AARCH64, // arm64
AUDIT_ARCH_ARM, // arm32
AUDIT_ARCH_I386, // x86 (32-bit)
AUDIT_ARCH_PPC64, // PPC
AUDIT_ARCH_PPC64LE, // PPC
AUDIT_ARCH_X86_64, // x86-64
-1 };
#endif
Expand Down
0