libspdm & spdm-emu: update arch map

It fails to run `bitbake -p` for qemuppc64 with errors:

  ERROR: /path_to/meta-oe/recipes-security/spdm-emu/spdm-emu_git.bb:
         unsupported architecture 'powerpc64le'
  ERROR: /path_to/meta-oe/recipes-support/libspdm/libspdm_3.8.2.bb:
         unsupported architecture 'powerpc64le'

Add qemuppc64 default TARGET_ARCH to the arch map.

Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
This commit is contained in:
Kai Kang 2026-03-25 10:20:31 +08:00 committed by Khem Raj
parent c1867c52ae
commit 9fb95d3d7e
No known key found for this signature in database
GPG Key ID: BB053355919D3314
2 changed files with 2 additions and 0 deletions

View File

@ -28,6 +28,7 @@ def get_spdm_multiarch(d):
"riscv32": "riscv32",
"riscv64": "riscv64",
"ppc64le": "ppc64le",
"powerpc64le": "ppc64le",
}
if target_arch in multiarch_options:

View File

@ -37,6 +37,7 @@ def get_spdm_multiarch(bb, d):
"riscv32": "riscv32",
"riscv64": "riscv64",
"ppc64le": "ppc64le",
"powerpc64le": "ppc64le",
}
if target_arch in multiarch_options :