diff options
-rw-r--r-- | meta/conf/machine/include/arm/feature-arm-crypto.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/conf/machine/include/arm/feature-arm-crypto.inc b/meta/conf/machine/include/arm/feature-arm-crypto.inc index aade6ce08d..c1f5b1225d 100644 --- a/meta/conf/machine/include/arm/feature-arm-crypto.inc +++ b/meta/conf/machine/include/arm/feature-arm-crypto.inc | |||
@@ -3,3 +3,8 @@ | |||
3 | 3 | ||
4 | TUNEVALID[crypto] = "Enable cryptographic instructions for ARMv8" | 4 | TUNEVALID[crypto] = "Enable cryptographic instructions for ARMv8" |
5 | TUNE_CCARGS_MARCH_OPTS .= "${@bb.utils.contains('TUNE_FEATURES', 'crypto', '+crypto', '', d)}" | 5 | TUNE_CCARGS_MARCH_OPTS .= "${@bb.utils.contains('TUNE_FEATURES', 'crypto', '+crypto', '', d)}" |
6 | TUNECONFLICTS[crypto] = "nocrypto" | ||
7 | |||
8 | TUNEVALID[nocrypto] = "Disable cryptographic instructions for ARMv8" | ||
9 | TUNE_CCARGS_MARCH_OPTS .= "${@bb.utils.contains('TUNE_FEATURES', 'nocrypto', '+nocrypto', '', d)}" | ||
10 | TUNECONFLICTS[nocrypto] = "crypto" | ||