Skip to content

Commit

Permalink
rootfs-builder: exclude unsupported archs from clearlinux
Browse files Browse the repository at this point in the history
For clearlinux, for now, it is only designed for amd64.

Fixes: kata-containers#320

Signed-off-by: Penny Zheng <[email protected]>
  • Loading branch information
Pennyzct committed Jun 24, 2019
1 parent 0e0e74b commit 7dc15c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rootfs-builder/clearlinux/config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ PACKAGES="util-linux-bin iptables-bin libudev0-shim chrony"
INIT_PROCESS=systemd
# List of zero or more architectures to exclude from build,
# as reported by `uname -m`
ARCH_EXCLUDE_LIST=(ppc64le)
ARCH_EXCLUDE_LIST=( aarch64 ppc64le s390x )

[ "$SECCOMP" = "yes" ] && PACKAGES+=" libseccomp" || true

0 comments on commit 7dc15c2

Please sign in to comment.