From: Ricardo Neri Date: Tue, 30 Jul 2019 21:20:54 +0000 (-0400) Subject: ovmf: Use HOSTTOOLS' python3 X-Git-Tag: uninative-2.7~528 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=435d1f8ffe9df86367316d25cb6def2ea2041642;p=openembedded-core.git ovmf: Use HOSTTOOLS' python3 Use the variable PYTHON_COMMAND to let know EDK2 base tools that python3 in the host shall be used. In order build successfully, the host must have installed the python3-distutils package or equivalent. Based on an original patch by Ross Burton. Cc: Ross Burton Cc: Patrick Ohly Signed-off-by: Ricardo Neri --- diff --git a/meta/recipes-core/ovmf/ovmf_git.bb b/meta/recipes-core/ovmf/ovmf_git.bb index c66b751a94..834ee32466 100644 --- a/meta/recipes-core/ovmf/ovmf_git.bb +++ b/meta/recipes-core/ovmf/ovmf_git.bb @@ -46,6 +46,8 @@ COMPATIBLE_HOST='(i.86|x86_64).*' OVMF_SECURE_BOOT_EXTRA_FLAGS ??= "" OVMF_SECURE_BOOT_FLAGS = "-DSECURE_BOOT_ENABLE=TRUE ${OVMF_SECURE_BOOT_EXTRA_FLAGS}" +export PYTHON_COMMAND = "${HOSTTOOLS_DIR}/python3" + do_patch[postfuncs] += "fix_basetools_location" fix_basetools_location () { }