diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2019-09-11 18:31:43 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-09-16 23:02:44 +0100 |
commit | 6606a86979f596877b60184a81d7bfc3f06c1751 (patch) | |
tree | ae23cf38dd718239237a8666397a25675276f5e7 /meta/conf | |
parent | 63f08ef4968576fca8d6f5d28d86d71c3e980b8e (diff) | |
download | poky-6606a86979f596877b60184a81d7bfc3f06c1751.tar.gz |
conf/multilib.conf: Add ovmf to NON_MULTILIB_RECIPES
Fixed:
MACHINE = "qemux86-64"
require conf/multilib.conf
MULTILIBS = "multilib:lib32"
DEFAULTTUNE_virtclass-multilib-lib32 = "x86"
$ bitbake ovmf lib32-ovmf
[snip]
ERROR: ovmf-edk2-stable201905-r0 do_deploy_setscene: The recipe ovmf is trying to install files into a shared area when those files already exist.
Those files and their manifest location are:
/buildarea1/lyang1/rebase-work/test_cc/tmp-glibc/deploy/images/qemux86-64/OvmfPkKek1.key
(matched in manifest-qemux86_64-lib32-ovmf.deploy)
[snip]
Add it NON_MULTILIB_RECIPES to fix the problem since it is a firmware, build
multilib for it doens't make much sense.
(From OE-Core rev: 5c685f55ccba9d47a79e8798903b30b90bdf03c6)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r-- | meta/conf/multilib.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/multilib.conf b/meta/conf/multilib.conf index 65a28ddbd2..cfed3fbbd0 100644 --- a/meta/conf/multilib.conf +++ b/meta/conf/multilib.conf | |||
@@ -29,4 +29,4 @@ PKG_CONFIG_PATH[vardepvalueexclude] = ":${WORKDIR}/recipe-sysroot/${datadir}/pkg | |||
29 | 29 | ||
30 | # These recipes don't need multilib variants, the ${BPN} PROVDES/RPROVDES | 30 | # These recipes don't need multilib variants, the ${BPN} PROVDES/RPROVDES |
31 | # ${MLPREFIX}${BPN} | 31 | # ${MLPREFIX}${BPN} |
32 | NON_MULTILIB_RECIPES = "grub grub-efi make-mod-scripts" | 32 | NON_MULTILIB_RECIPES = "grub grub-efi make-mod-scripts ovmf" |