umoci & buildah & podman-tui: mark incompatible with mips

Since the runtime dependency skopeo has been marked incompatible with
mips, mark for umoci accordingly.

buildah and podman-tui rdepends on podman which has been marked
incompatible with mips, so mark for them too.

Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
This commit is contained in:
Kai Kang 2023-10-25 10:22:39 +08:00 committed by Bruce Ashfield
parent e133bbf7bb
commit 710f858012
3 changed files with 6 additions and 0 deletions

View File

@ -20,6 +20,8 @@ inherit pkgconfig
inherit features_check inherit features_check
REQUIRED_DISTRO_FEATURES = "seccomp ipv6" REQUIRED_DISTRO_FEATURES = "seccomp ipv6"
COMPATIBLE_HOST = "^(?!mips).*"
GO_IMPORT = "github.com/containers/buildah" GO_IMPORT = "github.com/containers/buildah"
GO_INSTALL = "${GO_IMPORT}" GO_INSTALL = "${GO_IMPORT}"
GO_WORKDIR = "${GO_INSTALL}" GO_WORKDIR = "${GO_INSTALL}"

View File

@ -41,6 +41,8 @@ PODMAN_PKG = "github.com/containers/podman-tui"
inherit go goarch inherit go goarch
inherit pkgconfig inherit pkgconfig
COMPATIBLE_HOST = "^(?!mips).*"
do_configure[noexec] = "1" do_configure[noexec] = "1"
BUILD_TAGS ?= "exclude_graphdriver_btrfs exclude_graphdriver_devicemapper" BUILD_TAGS ?= "exclude_graphdriver_btrfs exclude_graphdriver_devicemapper"

View File

@ -17,6 +17,8 @@ GO_IMPORT = "github.com/opencontainers/umoci"
inherit goarch inherit goarch
inherit go inherit go
COMPATIBLE_HOST = "^(?!mips).*"
# This disables seccomp and apparmor, which are on by default in the # This disables seccomp and apparmor, which are on by default in the
# go package. # go package.
EXTRA_OEMAKE="BUILDTAGS=''" EXTRA_OEMAKE="BUILDTAGS=''"