diff --git a/podman.changes b/podman.changes index 5740efa..eb0119e 100644 --- a/podman.changes +++ b/podman.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Oct 31 14:35:31 UTC 2023 - Guillaume GARDET + +- crun is not available for armv6 (because of criu), so use runc + on armv6 + ------------------------------------------------------------------- Thu Oct 12 09:47:46 UTC 2023 - Dan Čermák diff --git a/podman.spec b/podman.spec index ca8d8d1..9723dd2 100644 --- a/podman.spec +++ b/podman.spec @@ -64,7 +64,12 @@ Requires: iptables Requires: libcontainers-common >= 20230214 # use crun on Tumbleweed & ALP for WASM support %if 0%{suse_version} >= 1600 +%ifarch armv6l armv6hl +# crun not available for armv6 (because of criu) +Requires: runc >= 1.0.1 +%else Requires: crun +%endif %else Requires: runc >= 1.0.1 %endif