mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-08-11 08:51:59 +00:00
spdm-emu: use SkipRecipe instead of fatal error for unsupported architectures
Current code fails to parse meta-oe layer for machine with unsupported architecture. This is too restrictive as it requires downstream layers to play tricks with masking the recipe. Usual way is to skip the recipe instead. Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
This commit is contained in:
parent
cd7b52861d
commit
6ccd072ec1
@ -34,7 +34,7 @@ def get_spdm_multiarch(d):
|
||||
if target_arch in multiarch_options:
|
||||
return multiarch_options[target_arch]
|
||||
|
||||
bb.fatal("unsupported architecture '%s'" % target_arch)
|
||||
bb.parse.SkipRecipe("unsupported architecture '%s'" % target_arch)
|
||||
|
||||
EXTRA_OECMAKE += "\
|
||||
-DARCH=${@get_spdm_multiarch(d)} \
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user