diff options
author | Simon Glass <sjg@chromium.org> | 2024-10-14 16:32:12 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2024-10-18 14:10:22 -0600 |
commit | abb778038101c5d150c14027e39f7009afc30208 (patch) | |
tree | a0e2bd9deec452c284a4b1808e56325155a79969 /cmd/Kconfig | |
parent | 424d537e70a056103608085e24cec56b77767b22 (diff) | |
download | u-boot-abb778038101c5d150c14027e39f7009afc30208.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>
Diffstat (limited to 'cmd/Kconfig')
-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. |