From 97e0c91f79ca4e5e017ee1607f2938e69d43cc7d Mon Sep 17 00:00:00 2001 From: Drew Reed Date: Tue, 30 Apr 2024 17:29:52 +0100 Subject: [PATCH] arm-systemready: Fix regex in arm-systemready-ir-acs recipe The regex used to validate compatible machines is incorrect as it's only checking the machine name starts with "fvp" not "fvp-" as intended. It's also been modified to allow FVPs called xxx-fvp to be compatible with Corstone-1000. Signed-off-by: Drew Reed Signed-off-by: Jon Mason --- .../recipes-test/arm-systemready-acs/arm-systemready-ir-acs.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-arm-systemready/recipes-test/arm-systemready-acs/arm-systemready-ir-acs.bb b/meta-arm-systemready/recipes-test/arm-systemready-acs/arm-systemready-ir-acs.bb index f9226c31..41ac2f77 100644 --- a/meta-arm-systemready/recipes-test/arm-systemready-acs/arm-systemready-ir-acs.bb +++ b/meta-arm-systemready/recipes-test/arm-systemready-acs/arm-systemready-ir-acs.bb @@ -41,7 +41,7 @@ file://${COMMON_LICENSE_DIR}/Zlib;md5=87f239f408daca8a157858e192597633 \ " IMAGE_CLASSES:remove = "license_image" -COMPATIBLE_MACHINE = "fvp-*" +COMPATIBLE_MACHINE = "(fvp-.+|.+-fvp)" TEST_SUITES = "arm_systemready_ir_acs"