diff options
| author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-05-31 22:56:02 +0200 |
|---|---|---|
| committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-06-01 04:53:13 +0200 |
| commit | 5ec48e38eefa5fbc2cab0c34b2b48df67c0fa23e (patch) | |
| tree | a61bf0860c0ab52f36892c9a3ebc2bc36905e0be /lib/efi_loader/Kconfig | |
| parent | 38b9a79c6366a0e4c98b0a6f33f268fc0d3ba4ce (diff) | |
| download | u-boot-5ec48e38eefa5fbc2cab0c34b2b48df67c0fa23e.tar.gz u-boot-5ec48e38eefa5fbc2cab0c34b2b48df67c0fa23e.tar.xz u-boot-5ec48e38eefa5fbc2cab0c34b2b48df67c0fa23e.zip | |
efi_loader: Kconfig entries for GetTime(), SetTime()
The GetTime() and the SetTime() runtime services are not obligatory. So
let's make them customizable.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'lib/efi_loader/Kconfig')
| -rw-r--r-- | lib/efi_loader/Kconfig | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/efi_loader/Kconfig b/lib/efi_loader/Kconfig index fc04ea39d0..cd5436c576 100644 --- a/lib/efi_loader/Kconfig +++ b/lib/efi_loader/Kconfig @@ -18,6 +18,22 @@ config EFI_LOADER if EFI_LOADER +config EFI_GET_TIME + bool "GetTime() runtime service" + depends on DM_RTC + default y + help + Provide the GetTime() runtime service at boottime. This service + can be used by an EFI application to read the real time clock. + +config EFI_SET_TIME + bool "SetTime() runtime service" + depends on EFI_GET_TIME + default n + help + Provide the SetTime() runtime service at boottime. This service + can be used by an EFI application to adjust the real time clock. + config EFI_DEVICE_PATH_TO_TEXT bool "Device path to text protocol" default y |
