cmd: introduce 'write' command
[platform/kernel/u-boot.git] / cmd / Kconfig
index b50e14f..ba5ec69 100644 (file)
@@ -1562,6 +1562,11 @@ config CMD_WDT
        help
          This provides commands to control the watchdog timer devices.
 
+config CMD_WRITE
+       bool "write - Write binary data to a partition"
+       help
+         Provides low-level write access to a partition.
+
 config CMD_AXI
        bool "axi"
        depends on AXI
@@ -2000,7 +2005,9 @@ config CMD_EFIDEBUG
 
 config CMD_EFICONFIG
        bool "eficonfig - provide menu-driven uefi variables maintenance interface"
+       default y if !HAS_BOARD_SIZE_LIMIT
        depends on CMD_BOOTEFI_BOOTMGR
+       select MENU
        help
          Enable the 'eficonfig' command which provides the menu-driven UEFI
          variable maintenance interface.
@@ -2021,6 +2028,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
@@ -2217,6 +2231,14 @@ config CMD_VIDCONSOLE
          The name 'lcdputs' is a bit of a misnomer, but so named because the
          video device is often an LCD.
 
+config CMD_SELECT_FONT
+       bool "select font size"
+       depends on VIDEO
+       default n
+       help
+         Enabling this will provide 'font' command.
+         Allows font selection at runtime.
+
 endmenu
 
 source "cmd/ti/Kconfig"