From 687c2d9f017080995159a0d6d566c8440ae8086774e61ab29c0983ebd5fa4c2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20=C4=8Cerm=C3=A1k?= Date: Wed, 1 Nov 2023 07:05:54 +0000 Subject: [PATCH] Accepting request 1121460 from home:Guillaume_G:branches:devel:microos - crun is not available for armv6 (because of criu), so use runc on armv6 OBS-URL: https://build.opensuse.org/request/show/1121460 OBS-URL: https://build.opensuse.org/package/show/devel:microos/podman?expand=0&rev=36 --- podman.changes | 6 ++++++ podman.spec | 5 +++++ 2 files changed, 11 insertions(+) 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