特定のカーネル構成を開くとき。
CONFIG_CRYPTO_FIPS=y
CONFIG_XXX_YYYY
コンパイル中に他の多くの依存項目が開きます()。特定のカーネルCONFIG_のすべての依存関係を知る方法はありますか?
ベストアンサー1
Depends on
の部分はファイルの一部menuconfig
に保存されます。Kconfig
depends on
config CRYPTO_FIPS
bool "FIPS 200 compliance"
depends on (CRYPTO_ANSI_CPRNG || CRYPTO_DRBG) && !CRYPTO_MANAGER_DISABLE_TESTS
depends on MODULE_SIG
help
This options enables the fips boot option which is
required if you want to system to operate in a FIPS 200
certification. You should say no unless you know what
this is.
Kconfigファイルを読み込んで設定を検索できます。