]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - cmd/Kconfig
Kconfig: Convert CMD_READ to Kconfig
[people/ms/u-boot.git] / cmd / Kconfig
index 67890c7f8ebd83bda19de809722c2d820e9f269d..0d9292b4f66a6ed3ba387ca9a96257265f9c38e4 100644 (file)
@@ -718,6 +718,14 @@ config CMD_MMC_SPI
          to 20MHz. It is useful since it reduces the amount of protocol code
          required.
 
+config CMD_ONENAND
+       bool "onenand - access to onenand device"
+       help
+         OneNAND is a brand of NAND ('Not AND' gate) flash which provides
+         various useful features. This command allows reading, writing,
+         and erasing blocks. It allso provides a way to show and change
+         bad blocks, and test the device.
+
 config CMD_PART
        bool "part"
        select PARTITION_UUIDS
@@ -725,6 +733,27 @@ config CMD_PART
          Read and display information about the partition table on
          various media.
 
+config CMD_PCI
+       bool "pci - Access PCI devices"
+       help
+         Provide access to PCI (Peripheral Interconnect Bus), a type of bus
+         used on some devices to allow the CPU to communicate with its
+         peripherals. Sub-commands allow bus enumeration, displaying and
+         changing configuration space and a few other features.
+
+config CMD_PCMCIA
+       bool "pinit - Set up PCMCIA device"
+       help
+         Provides a means to initialise a PCMCIA (Personal Computer Memory
+         Card International Association) device. This is an old standard from
+         about 1990. These devices are typically removable memory or network
+         cards using a standard 68-pin connector.
+
+config CMD_READ
+       bool "read - Read binary data from a partition"
+       help
+         Provides low-level access to the data in a partition.
+
 config CMD_REMOTEPROC
        bool "remoteproc"
        depends on REMOTEPROC
@@ -1230,6 +1259,16 @@ config MTDPARTS_DEFAULT
          Defines a default MTD partitioning scheme in the Linux MTD command
          line partitions format
 
+config CMD_MTDPARTS_SPREAD
+       bool "Padd partition size to take account of bad blocks"
+       depends on CMD_MTDPARTS
+       help
+         This enables the 'spread' sub-command of the mtdparts command.
+         This command will modify the existing mtdparts variable by increasing
+         the size of the partitions such that 1) each partition's net size is
+         at least as large as the size specified in the mtdparts variable and
+         2) each partition starts on a good block.
+
 endmenu
 
 menu "Debug commands"