diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2022-11-20 17:48:56 -0800 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2022-11-22 23:32:16 -0500 |
commit | 3626f2c9ccd56c6a3ee51304a7da7aafb395a588 (patch) | |
tree | ecd9a8aff39f5056cbfe425b17a207385fd948d8 | |
parent | d2cfa7fac8cecb8f843d83fb896795b7bbe86641 (diff) | |
download | meta-virtualization-3626f2c9ccd56c6a3ee51304a7da7aafb395a588.tar.gz |
docker-distribution: do not build for riscv64
Currently docker-distribution has a do_compile error for riscv64.
The problem could be reproduced by:
MACHINE=qemuriscv64 bitbake docker-distribution
So explicitly set COMPATIBLE_HOST here to avoid it building for
riscv64. When someone interested in using this recipe for riscv64
fixes the compile issue, this setting could be removed.
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r-- | recipes-containers/docker-distribution/docker-distribution_git.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/recipes-containers/docker-distribution/docker-distribution_git.bb b/recipes-containers/docker-distribution/docker-distribution_git.bb index d0cd8f37..86fcd628 100644 --- a/recipes-containers/docker-distribution/docker-distribution_git.bb +++ b/recipes-containers/docker-distribution/docker-distribution_git.bb | |||
@@ -73,3 +73,5 @@ SYSTEMD_AUTO_ENABLE:docker-registry = "enable" | |||
73 | RDEPENDS:${PN}-ptest:remove = "${PN}" | 73 | RDEPENDS:${PN}-ptest:remove = "${PN}" |
74 | 74 | ||
75 | CVE_PRODUCT = "docker_registry" | 75 | CVE_PRODUCT = "docker_registry" |
76 | |||
77 | COMPATIBLE_HOST:riscv64 = "null" | ||