Files
u-boot/drivers/sm/Kconfig
Tom Rini e2837ecddc sm: Rework the Kconfig logic here
The symbol "SM" is a library symbol and should not be prompted for. It
should be selected by the drivers that use it. In this case we need to
add a SANDBOX_SM symbol for the sandbox driver. The meson SM driver
cannot build on other platforms, so add the appropriate dependency.

Reviewed-by: Peter Robinson <pbrobinson@gmail.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
2025-08-14 10:58:46 -06:00

18 lines
341 B
Plaintext

config SM
bool
config MESON_SM
bool "Amlogic Secure Monitor driver"
depends on ARCH_MESON
select SM
help
Say y here to enable the Amlogic secure monitor driver.
config SANDBOX_SM
bool "Sandbox Secure Monitor driver"
depends on SANDBOX
select SM
help
Say y here to enable the Sandbox driver for the secure monitor
uclass.