Move if/endif to subfolder Kconfig and make ARCH_HAVE_XXX option always selectable by moving out of if/endif
19 lines
332 B
Plaintext
19 lines
332 B
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
if BCH
|
|
|
|
config BCH_ENCRYPTION
|
|
bool "Enable BCH encryption"
|
|
default n
|
|
depends on CRYPTO_AES
|
|
|
|
config BCH_ENCRYPTION_KEY_SIZE
|
|
int "AES key size"
|
|
default 16
|
|
depends on BCH_ENCRYPTION
|
|
|
|
endif # BCH
|