From: Simon Glass Date: Mon, 14 Oct 2024 22:32:12 +0000 (-0600) Subject: x86: Enable RTC command by default X-Git-Url: http://git.dujemihanovic.xyz/%22/img/sics.gif/%22/static/git-favicon.png?a=commitdiff_plain;h=abb778038101c5d150c14027e39f7009afc30208;p=u-boot.git 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 --- diff --git a/cmd/Kconfig b/cmd/Kconfig index bff22b94de..a4ca61c37d 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.