diff options
| author | Tom Rini <[email protected]> | 2026-03-20 14:53:43 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-04-03 13:42:49 -0600 |
| commit | 70b5afb90579b7c1f5c9ce894f8536c051ff8f73 (patch) | |
| tree | f5f94aca5191367711c21c2e9e6cc89408c7999c | |
| parent | 79a9978112757892d7cab13a8e65f1c22d2b3037 (diff) | |
boot: Add DM_RTC as a dependency to CEDIT
The CEDIT functionality, due to the cmos functions, depends directly on
DM_RTC being enabled in order to provide that API. Express this in
Kconfig as well.
Signed-off-by: Tom Rini <[email protected]>
| -rw-r--r-- | boot/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/Kconfig b/boot/Kconfig index 2fe3f4fe4d1..f37e7a0c380 100644 --- a/boot/Kconfig +++ b/boot/Kconfig @@ -2040,7 +2040,7 @@ menu "Configuration editor" config CEDIT bool "Configuration editor" - depends on EXPO + depends on EXPO && DM_RTC help Provides a way to deal with board configuration and present it to the user for adjustment. |
