cmd: introduce 'write' command
[platform/kernel/u-boot.git] / cmd / Kconfig
index d93731f..ba5ec69 100644 (file)
@@ -337,6 +337,12 @@ config BOOTM_RTEMS
        help
          Support booting RTEMS images via the bootm command.
 
+config CMD_SEAMA
+       bool "Support read SEAMA NAND images"
+       depends on MTD_RAW_NAND
+       help
+         Support reading NAND Seattle Image (SEAMA) images.
+
 config CMD_VBE
        bool "vbe - Verified Boot for Embedded"
        depends on BOOTMETH_VBE
@@ -526,6 +532,10 @@ config CMD_THOR_DOWNLOAD
          There is no documentation about this within the U-Boot source code
          but you should be able to find something on the interwebs.
 
+config THOR_RESET_OFF
+       bool "thor: Disable reset on completion"
+       depends on CMD_THOR_DOWNLOAD
+
 config CMD_ZBOOT
        bool "zboot - x86 boot command"
        help
@@ -1552,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
@@ -1814,7 +1829,7 @@ config SYS_DISABLE_AUTOLOAD
 
 config CMD_WGET
        bool "wget"
-       select TCP
+       select PROT_TCP
        help
          wget is a simple command to download kernel, or other files,
          from a http server over TCP.
@@ -1990,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.
@@ -2011,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
@@ -2207,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"
@@ -2535,6 +2567,7 @@ config CMD_MTDPARTS_SHOW_NET_SIZES
 config MTDIDS_DEFAULT
        string "Default MTD IDs"
        depends on MTD || SPI_FLASH
+       depends on !SYS_MTDPARTS_RUNTIME
        help
          Defines a default MTD IDs list for use with MTD partitions in the
          Linux MTD command line partitions format.
@@ -2542,6 +2575,7 @@ config MTDIDS_DEFAULT
 config MTDPARTS_DEFAULT
        string "Default MTD partition scheme"
        depends on MTD || SPI_FLASH
+       depends on !SYS_MTDPARTS_RUNTIME
        help
          Defines a default MTD partitioning scheme in the Linux MTD command
          line partitions format
@@ -2616,6 +2650,7 @@ config CMD_DIAG
 
 config CMD_EVENT
        bool "event - Show information about events"
+       depends on EVENT
        default y if EVENT_DEBUG
        help
          This enables the 'event' command which provides information about
@@ -2726,4 +2761,11 @@ config MMC_SPEED_MODE_SET
          and is indicated using the index from enum bus_mode in
          include/mmc.h. A speed mode can be set only if it has already
          been enabled in the device tree.
+
+config CMD_MESON
+       bool "Amlogic Meson commands"
+       depends on ARCH_MESON
+       default y
+       help
+         Enable useful commands for the Meson Soc family developed by Amlogic Inc.
 endmenu