xref: /aosp_15_r20/external/coreboot/src/vendorcode/eltan/security/mboot/Kconfig (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1## SPDX-License-Identifier: GPL-2.0-only
2
3menu "Measured Boot (mboot)"
4
5config VENDORCODE_ELTAN_MBOOT
6	bool "Measure firmware with mboot."
7	depends on !VBOOT
8	default n
9	select VBOOT_LIB
10	help
11	  Enabling MBOOT will use mboot to measure the components of the firmware
12	  (stages, payload, etc).
13
14if VENDORCODE_ELTAN_MBOOT
15
16config VENDORCODE_ELTAN_CRTM_VERSION_STRING
17	string "default CRTM version"
18	default "default CRTM version"
19
20endif # VENDORCODE_ELTAN_MBOOT
21endmenu # Measured Boot (mboot)
22