SHA256
1
0
forked from pool/podman

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
This commit is contained in:
Dan Čermák 2023-11-01 07:05:54 +00:00 committed by Git OBS Bridge
parent 582ba49a4d
commit 687c2d9f01
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Tue Oct 31 14:35:31 UTC 2023 - Guillaume GARDET <guillaume.gardet@opensuse.org>
- 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 <dcermak@suse.com>

View File

@ -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