diff options
author | Simon Glass <sjg@chromium.org> | 2024-10-14 16:32:12 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2024-10-17 14:36:23 -0600 |
commit | f8f8ee1aa7754ddedff729d48b1f79757d413d4f (patch) | |
tree | eba8eeac8f6c2dd6b24fa38c9b2c51c52aca2004 | |
parent | f373f47c9b5dde8c7b95e22ca75918704a55cc58 (diff) | |
download | u-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/Kconfig | 1 |
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. |