diff options
author | Kevin Hao <kexin.hao@windriver.com> | 2019-06-11 16:29:18 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-06-11 13:26:55 +0100 |
commit | 317a0984e76c382b7b667c7497b7cdc91782d5cb (patch) | |
tree | d98d53735870e142873d76e9b996c2c7b928ef36 /meta | |
parent | 4b6ce4604cc15e289a48f8586d58a101b7a70b52 (diff) | |
download | poky-317a0984e76c382b7b667c7497b7cdc91782d5cb.tar.gz |
tune-thunderx: Set the correct PACKAGE_EXTRA_ARCHS_tune-thunderx
The value of PACKAGE_EXTRA_ARCHS_tune-thunderx should be based on
PACKAGE_EXTRA_ARCHS_tune-armv8a-crc-crypto instead of armv8a-crc-crypto.
Otherwise we would get some sanity check error like this:
OE-core's config sanity checker detected a potential misconfiguration.
Either fix the cause of this error or at your own risk disable the checker (see sanity.conf).
Following is the list of potential problems / advisories:
Error, the PACKAGE_ARCHS variable (all any noarch armv8a-crc-crypto thunderx qemuarm64) for DEFAULTTUNE (thunderx) does not contain TUNE_PKGARCH (aarch64)
(From OE-Core rev: 13cc0f7c0bd98ea228e9bdf51043117d38837ce7)
Signed-off-by: Kevin Hao <kexin.hao@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/conf/machine/include/tune-thunderx.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/machine/include/tune-thunderx.inc b/meta/conf/machine/include/tune-thunderx.inc index 92adf2df1f..aa4d0501d4 100644 --- a/meta/conf/machine/include/tune-thunderx.inc +++ b/meta/conf/machine/include/tune-thunderx.inc | |||
@@ -15,5 +15,5 @@ TUNE_FEATURES_tune-thunderx_be = "${TUNE_FEATURES_tune-thunderx} bigendian" | |||
15 | BASE_LIB_tune-thunderx = "lib64" | 15 | BASE_LIB_tune-thunderx = "lib64" |
16 | BASE_LIB_tune-thunderx_be = "lib64" | 16 | BASE_LIB_tune-thunderx_be = "lib64" |
17 | 17 | ||
18 | PACKAGE_EXTRA_ARCHS_tune-thunderx = "armv8a-crc-crypto thunderx" | 18 | PACKAGE_EXTRA_ARCHS_tune-thunderx = "${PACKAGE_EXTRA_ARCHS_tune-armv8a-crc-crypto} thunderx" |
19 | PACKAGE_EXTRA_ARCHS_tune-thunderx_be = "aarch64_be thunderx_be" | 19 | PACKAGE_EXTRA_ARCHS_tune-thunderx_be = "aarch64_be thunderx_be" |