diff options
author | Simon Glass | 2023-02-01 13:19:24 -0700 |
---|---|---|
committer | Tom Rini | 2023-02-07 14:33:48 -0500 |
commit | e158c948832a720d39f9e3c604505f5be224d147 (patch) | |
tree | 4d294736882d178c6c60332303a3b946a39f0eec /cmd | |
parent | 784d4fdfdbe74065cf339e3c225dafdabe4fa772 (diff) |
cmd: Add an option to enable the ini command
This command has no Kconfig option at present, but seems useful enough to
keep around. Add one.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index b50e14f70a0..c7344ee1f66 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -2021,6 +2021,13 @@ config CMD_LED with led on/off/togle/blink. Any LED drivers can be controlled with this command, e.g. led_gpio. +config CMD_INI + bool "ini" + help + Enable the 'ini' command which allows a .ini file to be parsed and + placed into environment variables. Please check the source code for + this as there is no documentation. + config CMD_DATE bool "date" default y if DM_RTC |