commit | 8310c1e849bf62cfce5087445f8d474e1055f39e | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Mon Oct 14 16:32:12 2024 -0600 |
committer | Simon Glass <sjg@chromium.org> | Fri Oct 18 14:10:22 2024 -0600 |
tree | a0e2bd9deec452c284a4b1808e56325155a79969 | |
parent | 2f347f720a77512043de426f9c64940d32e70fa2 [diff] [blame] |
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>
diff --git a/cmd/Kconfig b/cmd/Kconfig index bff22b94..a4ca61c 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig
@@ -2291,6 +2291,7 @@ 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.