aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2024-10-14 16:32:12 -0600
committerSimon Glass <sjg@chromium.org>2024-10-17 14:36:23 -0600
commitf8f8ee1aa7754ddedff729d48b1f79757d413d4f (patch)
treeeba8eeac8f6c2dd6b24fa38c9b2c51c52aca2004
parentf373f47c9b5dde8c7b95e22ca75918704a55cc58 (diff)
downloadu-boot-f8f8ee1aa7754ddedff729d48b1f79757d413d4f.tar.gz
x86: Enable RTC command by default
The real-time clock is needed for most X86 systems and it is useful to be able to read from it. Enable the rtc command by default. Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r--cmd/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig
index bff22b94de2..a4ca61c37dd 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -2291,6 +2291,7 @@ config CMD_DATE
config CMD_RTC
bool "rtc"
depends on DM_RTC
+ default y if X86
help
Enable the 'rtc' command for low-level access to RTC devices.