diff options
author | Mark Hatle <mark.hatle@xilinx.com> | 2020-12-02 09:49:18 -0800 |
---|---|---|
committer | Mark Hatle <mark.hatle@xilinx.com> | 2020-12-04 16:25:15 -0800 |
commit | d8d50ea2285d7ce3e2917fdeaf1b651bbfcaad8d (patch) | |
tree | 15a063514b2b11fbe049bdb92f39ca6ec4f56f19 | |
parent | ba66cc166d92b8a6b7b14012c25e28f9918d4f11 (diff) | |
download | meta-xilinx-d8d50ea2285d7ce3e2917fdeaf1b651bbfcaad8d.tar.gz |
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 <mark.hatle@xilinx.com>
-rw-r--r-- | meta-xilinx-bsp/conf/machine/aarch64-tc.conf | 2 |
1 files changed, 1 insertions, 1 deletions
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" | |||
23 | DEFAULTTUNE_virtclass-multilib-libilp32 = "cortexa72-cortexa53-ilp32" | 23 | DEFAULTTUNE_virtclass-multilib-libilp32 = "cortexa72-cortexa53-ilp32" |
24 | 24 | ||
25 | AVAILTUNES += "cortexa72-cortexa53-ilp32" | 25 | AVAILTUNES += "cortexa72-cortexa53-ilp32" |
26 | ARMPKGARCH_tune-cortexa72-cortexa53-ilp32 = "${ARMPKGARCH_tune-cortexa72-cortexa53}_ilp32" | 26 | ARMPKGARCH_tune-cortexa72-cortexa53-ilp32 = "${ARMPKGARCH_tune-cortexa72-cortexa53}-ilp32" |
27 | TUNE_FEATURES_tune-cortexa72-cortexa53-ilp32 = "${TUNE_FEATURES_tune-cortexa72-cortexa53} ilp32" | 27 | TUNE_FEATURES_tune-cortexa72-cortexa53-ilp32 = "${TUNE_FEATURES_tune-cortexa72-cortexa53} ilp32" |
28 | PACKAGE_EXTRA_ARCHS_tune-cortexa72-cortexa53-ilp32 = "${PACKAGE_EXTRA_ARCHS_tune-cortexa72-cortexa53} cortexa72-cortexa53-ilp32" | 28 | PACKAGE_EXTRA_ARCHS_tune-cortexa72-cortexa53-ilp32 = "${PACKAGE_EXTRA_ARCHS_tune-cortexa72-cortexa53} cortexa72-cortexa53-ilp32" |
29 | BASE_LIB_tune-cortexa72-cortexa53-ilp32 = "lib/ilp32" | 29 | BASE_LIB_tune-cortexa72-cortexa53-ilp32 = "lib/ilp32" |