Enable VFIO selftests to build on ppc64 and ppc64le made the changes to Makefile to include ppc64 and ppc64le.
With sPAPR TCE v2 support added to the VFIO selftest library, PowerPC systems can run the DMA mapping tests against the legacy VFIO container backend. Signed-off-by: Narayana Murty N <[email protected]> --- tools/testing/selftests/vfio/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/testing/selftests/vfio/Makefile b/tools/testing/selftests/vfio/Makefile index 2c32c48db509..8fd6afd334e5 100644 --- a/tools/testing/selftests/vfio/Makefile +++ b/tools/testing/selftests/vfio/Makefile @@ -1,6 +1,6 @@ ARCH ?= $(shell uname -m) -ifeq (,$(filter $(ARCH),aarch64 arm64 x86 x86_64)) +ifeq (,$(filter $(ARCH),aarch64 arm64 x86 x86_64 ppc64 ppc64le)) # Do nothing on unsupported architectures include ../lib.mk else -- 2.51.1

