kconfig.rst (577e648bdb524d1984659baf1bd6165de2edae83) | kconfig.rst (1f2146f7ca0f04afc62c4a170ec78bd030f3e72f) |
---|---|
1.. _kconfig: 2 3================ 4QEMU and Kconfig 5================ 6 7QEMU is a very versatile emulator; it can be built for a variety of 8targets, where each target can emulate various boards and at the same --- 302 unchanged lines hidden (view full) --- 311 config TPM 312 bool 313 314and also listed as follows in the top-level meson.build's host_kconfig 315variable:: 316 317 host_kconfig = \ 318 (have_tpm ? ['CONFIG_TPM=y'] : []) + \ | 1.. _kconfig: 2 3================ 4QEMU and Kconfig 5================ 6 7QEMU is a very versatile emulator; it can be built for a variety of 8targets, where each target can emulate various boards and at the same --- 302 unchanged lines hidden (view full) --- 311 config TPM 312 bool 313 314and also listed as follows in the top-level meson.build's host_kconfig 315variable:: 316 317 host_kconfig = \ 318 (have_tpm ? ['CONFIG_TPM=y'] : []) + \ |
319 ('CONFIG_LINUX' in config_host ? ['CONFIG_LINUX=y'] : []) + \ | 319 (targetos == 'linux' ? ['CONFIG_LINUX=y'] : []) + \ |
320 (have_ivshmem ? ['CONFIG_IVSHMEM=y'] : []) + \ 321 ... | 320 (have_ivshmem ? ['CONFIG_IVSHMEM=y'] : []) + \ 321 ... |