diff options
author | Miquel Raynal <miquel.raynal@bootlin.com> | 2019-10-03 19:50:25 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-12-04 17:10:51 -0500 |
commit | 587f44576e23174f1151f52b2c351777eb1b89ff (patch) | |
tree | d3d45b26e2dcc9f93b616551413dc7afffe6727d /cmd | |
parent | 85f7e9d547e0868ac5305c3698b38388a4b8e2a3 (diff) | |
download | u-boot-587f44576e23174f1151f52b2c351777eb1b89ff.tar.gz u-boot-587f44576e23174f1151f52b2c351777eb1b89ff.tar.bz2 u-boot-587f44576e23174f1151f52b2c351777eb1b89ff.zip |
cmd: mtdparts: Kconfig: join mtdparts command entry with its options
Move the Kconfig entry of the option right after the entry of the
mtdparts command.
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/Kconfig | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 29df088c3e..46f1dd2462 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1962,20 +1962,6 @@ config CMD_MTDPARTS declare the partitions in the mtdparts environment variable but better use the MTD stack and the 'mtd' command instead. -config MTDIDS_DEFAULT - string "Default MTD IDs" - depends on MTD_PARTITIONS || CMD_MTDPARTS || CMD_NAND || CMD_FLASH - help - Defines a default MTD IDs list for use with MTD partitions in the - Linux MTD command line partitions format. - -config MTDPARTS_DEFAULT - string "Default MTD partition scheme" - depends on MTD_PARTITIONS || CMD_MTDPARTS || CMD_NAND || CMD_FLASH - help - 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 @@ -1994,6 +1980,20 @@ config CMD_MTDPARTS_SHOW_NET_SIZES effective usable size of a partition, if bad blocks are taken into account. +config MTDIDS_DEFAULT + string "Default MTD IDs" + depends on MTD_PARTITIONS || CMD_MTDPARTS || CMD_NAND || CMD_FLASH + help + Defines a default MTD IDs list for use with MTD partitions in the + Linux MTD command line partitions format. + +config MTDPARTS_DEFAULT + string "Default MTD partition scheme" + depends on MTD_PARTITIONS || CMD_MTDPARTS || CMD_NAND || CMD_FLASH + help + Defines a default MTD partitioning scheme in the Linux MTD command + line partitions format + config CMD_REISER bool "reiser - Access to reiserfs filesystems" help |