From d8d50ea2285d7ce3e2917fdeaf1b651bbfcaad8d Mon Sep 17 00:00:00 2001 From: Mark Hatle Date: Wed, 2 Dec 2020 09:49:18 -0800 Subject: machine/aarch64-tc.conf: Fix incorrect ilp32 pkgarch If there is a _ in the package arch, the sstate-control files are written with a _. However, when they are used they somehow get translated to a -, triggering a warning message. The warning though means that the sstate component was not actually staged into the recipe-sysroot, causing a later build failure. Signed-off-by: Mark Hatle --- meta-xilinx-bsp/conf/machine/aarch64-tc.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-xilinx-bsp/conf/machine/aarch64-tc.conf b/meta-xilinx-bsp/conf/machine/aarch64-tc.conf index e9e0412b..08c2d1c6 100644 --- a/meta-xilinx-bsp/conf/machine/aarch64-tc.conf +++ b/meta-xilinx-bsp/conf/machine/aarch64-tc.conf @@ -23,7 +23,7 @@ DEFAULTTUNE = "cortexa72-cortexa53" DEFAULTTUNE_virtclass-multilib-libilp32 = "cortexa72-cortexa53-ilp32" AVAILTUNES += "cortexa72-cortexa53-ilp32" -ARMPKGARCH_tune-cortexa72-cortexa53-ilp32 = "${ARMPKGARCH_tune-cortexa72-cortexa53}_ilp32" +ARMPKGARCH_tune-cortexa72-cortexa53-ilp32 = "${ARMPKGARCH_tune-cortexa72-cortexa53}-ilp32" TUNE_FEATURES_tune-cortexa72-cortexa53-ilp32 = "${TUNE_FEATURES_tune-cortexa72-cortexa53} ilp32" PACKAGE_EXTRA_ARCHS_tune-cortexa72-cortexa53-ilp32 = "${PACKAGE_EXTRA_ARCHS_tune-cortexa72-cortexa53} cortexa72-cortexa53-ilp32" BASE_LIB_tune-cortexa72-cortexa53-ilp32 = "lib/ilp32" -- cgit v1.2.3-54-g00ecf