Kconfig 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869
  1. menu "Command line interface"
  2. config CMDLINE
  3. bool "Support U-Boot commands"
  4. default y
  5. help
  6. Enable U-Boot's command-line functions. This provides a means
  7. to enter commands into U-Boot for a wide variety of purposes. It
  8. also allows scripts (containing commands) to be executed.
  9. Various commands and command categorys can be indivdually enabled.
  10. Depending on the number of commands enabled, this can add
  11. substantially to the size of U-Boot.
  12. config HUSH_PARSER
  13. bool "Use hush shell"
  14. depends on CMDLINE
  15. help
  16. This option enables the "hush" shell (from Busybox) as command line
  17. interpreter, thus enabling powerful command line syntax like
  18. if...then...else...fi conditionals or `&&' and '||'
  19. constructs ("shell scripts").
  20. If disabled, you get the old, much simpler behaviour with a somewhat
  21. smaller memory footprint.
  22. config SYS_PROMPT
  23. string "Shell prompt"
  24. default "=> "
  25. help
  26. This string is displayed in the command line to the left of the
  27. cursor.
  28. menu "Autoboot options"
  29. config AUTOBOOT
  30. bool "Autoboot"
  31. default y
  32. help
  33. This enables the autoboot. See doc/README.autoboot for detail.
  34. config AUTOBOOT_KEYED
  35. bool "Stop autobooting via specific input key / string"
  36. default n
  37. help
  38. This option enables stopping (aborting) of the automatic
  39. boot feature only by issuing a specific input key or
  40. string. If not enabled, any input key will abort the
  41. U-Boot automatic booting process and bring the device
  42. to the U-Boot prompt for user input.
  43. config AUTOBOOT_PROMPT
  44. string "Autoboot stop prompt"
  45. depends on AUTOBOOT_KEYED
  46. default "Autoboot in %d seconds\\n"
  47. help
  48. This string is displayed before the boot delay selected by
  49. CONFIG_BOOTDELAY starts. If it is not defined there is no
  50. output indicating that autoboot is in progress.
  51. Note that this define is used as the (only) argument to a
  52. printf() call, so it may contain '%' format specifications,
  53. provided that it also includes, sepearated by commas exactly
  54. like in a printf statement, the required arguments. It is
  55. the responsibility of the user to select only such arguments
  56. that are valid in the given context.
  57. config AUTOBOOT_ENCRYPTION
  58. bool "Enable encryption in autoboot stopping"
  59. depends on AUTOBOOT_KEYED
  60. default n
  61. config AUTOBOOT_DELAY_STR
  62. string "Delay autobooting via specific input key / string"
  63. depends on AUTOBOOT_KEYED && !AUTOBOOT_ENCRYPTION
  64. help
  65. This option delays the automatic boot feature by issuing
  66. a specific input key or string. If CONFIG_AUTOBOOT_DELAY_STR
  67. or the environment variable "bootdelaykey" is specified
  68. and this string is received from console input before
  69. autoboot starts booting, U-Boot gives a command prompt. The
  70. U-Boot prompt will time out if CONFIG_BOOT_RETRY_TIME is
  71. used, otherwise it never times out.
  72. config AUTOBOOT_STOP_STR
  73. string "Stop autobooting via specific input key / string"
  74. depends on AUTOBOOT_KEYED && !AUTOBOOT_ENCRYPTION
  75. help
  76. This option enables stopping (aborting) of the automatic
  77. boot feature only by issuing a specific input key or
  78. string. If CONFIG_AUTOBOOT_STOP_STR or the environment
  79. variable "bootstopkey" is specified and this string is
  80. received from console input before autoboot starts booting,
  81. U-Boot gives a command prompt. The U-Boot prompt never
  82. times out, even if CONFIG_BOOT_RETRY_TIME is used.
  83. config AUTOBOOT_KEYED_CTRLC
  84. bool "Enable Ctrl-C autoboot interruption"
  85. depends on AUTOBOOT_KEYED && !AUTOBOOT_ENCRYPTION
  86. default n
  87. help
  88. This option allows for the boot sequence to be interrupted
  89. by ctrl-c, in addition to the "bootdelaykey" and "bootstopkey".
  90. Setting this variable provides an escape sequence from the
  91. limited "password" strings.
  92. config AUTOBOOT_STOP_STR_SHA256
  93. string "Stop autobooting via SHA256 encrypted password"
  94. depends on AUTOBOOT_KEYED && AUTOBOOT_ENCRYPTION
  95. help
  96. This option adds the feature to only stop the autobooting,
  97. and therefore boot into the U-Boot prompt, when the input
  98. string / password matches a values that is encypted via
  99. a SHA256 hash and saved in the environment.
  100. endmenu
  101. source "cmd/fastboot/Kconfig"
  102. comment "Commands"
  103. menu "Info commands"
  104. config CMD_BDI
  105. bool "bdinfo"
  106. default y
  107. help
  108. Print board info
  109. config CMD_CONFIG
  110. bool "config"
  111. select BUILD_BIN2C
  112. default SANDBOX
  113. help
  114. Print ".config" contents.
  115. If this option is enabled, the ".config" file contents are embedded
  116. in the U-Boot image and can be printed on the console by the "config"
  117. command. This provides information of which options are enabled on
  118. the running U-Boot.
  119. config CMD_CONSOLE
  120. bool "coninfo"
  121. default y
  122. help
  123. Print console devices and information.
  124. config CMD_CPU
  125. bool "cpu"
  126. help
  127. Print information about available CPUs. This normally shows the
  128. number of CPUs, type (e.g. manufacturer, architecture, product or
  129. internal name) and clock frequency. Other information may be
  130. available depending on the CPU driver.
  131. config CMD_LICENSE
  132. bool "license"
  133. select BUILD_BIN2C
  134. help
  135. Print GPL license text
  136. endmenu
  137. menu "Boot commands"
  138. config CMD_BOOTD
  139. bool "bootd"
  140. default y
  141. help
  142. Run the command stored in the environment "bootcmd", i.e.
  143. "bootd" does the same thing as "run bootcmd".
  144. config CMD_BOOTM
  145. bool "bootm"
  146. default y
  147. help
  148. Boot an application image from the memory.
  149. config CMD_BOOTZ
  150. bool "bootz"
  151. help
  152. Boot the Linux zImage
  153. config CMD_BOOTI
  154. bool "booti"
  155. depends on ARM64
  156. default y
  157. help
  158. Boot an AArch64 Linux Kernel image from memory.
  159. config CMD_BOOTEFI
  160. bool "bootefi"
  161. depends on EFI_LOADER
  162. default y
  163. help
  164. Boot an EFI image from memory.
  165. config CMD_BOOTEFI_HELLO_COMPILE
  166. bool "Compile a standard EFI hello world binary for testing"
  167. depends on CMD_BOOTEFI && (ARM || X86)
  168. default y
  169. help
  170. This compiles a standard EFI hello world application with U-Boot so
  171. that it can be used with the test/py testing framework. This is useful
  172. for testing that EFI is working at a basic level, and for bringing
  173. up EFI support on a new architecture.
  174. No additional space will be required in the resulting U-Boot binary
  175. when this option is enabled.
  176. config CMD_BOOTEFI_HELLO
  177. bool "Allow booting a standard EFI hello world for testing"
  178. depends on CMD_BOOTEFI_HELLO_COMPILE
  179. help
  180. This adds a standard EFI hello world application to U-Boot so that
  181. it can be used with the 'bootefi hello' command. This is useful
  182. for testing that EFI is working at a basic level, and for bringing
  183. up EFI support on a new architecture.
  184. config CMD_BOOTMENU
  185. bool "bootmenu"
  186. select MENU
  187. help
  188. Add an ANSI terminal boot menu command.
  189. config CMD_ELF
  190. bool "bootelf, bootvx"
  191. default y
  192. help
  193. Boot an ELF/vxWorks image from the memory.
  194. config CMD_FDT
  195. bool "Flattened Device Tree utility commands"
  196. default y
  197. depends on OF_LIBFDT
  198. help
  199. Do FDT related setup before booting into the Operating System.
  200. config CMD_GO
  201. bool "go"
  202. default y
  203. help
  204. Start an application at a given address.
  205. config CMD_RUN
  206. bool "run"
  207. default y
  208. help
  209. Run the command in the given environment variable.
  210. config CMD_IMI
  211. bool "iminfo"
  212. default y
  213. help
  214. Print header information for application image.
  215. config CMD_IMLS
  216. bool "imls"
  217. default y
  218. help
  219. List all images found in flash
  220. config CMD_XIMG
  221. bool "imxtract"
  222. default y
  223. help
  224. Extract a part of a multi-image.
  225. config CMD_POWEROFF
  226. bool
  227. endmenu
  228. menu "Environment commands"
  229. config CMD_ASKENV
  230. bool "ask for env variable"
  231. help
  232. Ask for environment variable
  233. config CMD_EXPORTENV
  234. bool "env export"
  235. default y
  236. help
  237. Export environments.
  238. config CMD_IMPORTENV
  239. bool "env import"
  240. default y
  241. help
  242. Import environments.
  243. config CMD_EDITENV
  244. bool "editenv"
  245. default y
  246. help
  247. Edit environment variable.
  248. config CMD_GREPENV
  249. bool "search env"
  250. help
  251. Allow for searching environment variables
  252. config CMD_SAVEENV
  253. bool "saveenv"
  254. default y
  255. help
  256. Save all environment variables into the compiled-in persistent
  257. storage.
  258. config CMD_ENV_EXISTS
  259. bool "env exists"
  260. default y
  261. help
  262. Check if a variable is defined in the environment for use in
  263. shell scripting.
  264. endmenu
  265. menu "Memory commands"
  266. config CMD_MEMORY
  267. bool "md, mm, nm, mw, cp, cmp, base, loop"
  268. default y
  269. help
  270. Memory commands.
  271. md - memory display
  272. mm - memory modify (auto-incrementing address)
  273. nm - memory modify (constant address)
  274. mw - memory write (fill)
  275. cp - memory copy
  276. cmp - memory compare
  277. base - print or set address offset
  278. loop - initialize loop on address range
  279. config CMD_CRC32
  280. bool "crc32"
  281. default y
  282. help
  283. Compute CRC32.
  284. config CMD_MD5SUM
  285. bool "md5sum"
  286. default n
  287. select MD5
  288. help
  289. Compute MD5 checksum.
  290. config MD5SUM_VERFIY
  291. bool "md5sum -v"
  292. default n
  293. depends on CMD_MD5SUM
  294. help
  295. Add -v option to verify data against an MD5 checksum.
  296. config LOOPW
  297. bool "loopw"
  298. help
  299. Infinite write loop on address range
  300. config CMD_MEMTEST
  301. bool "memtest"
  302. help
  303. Simple RAM read/write test.
  304. config CMD_MX_CYCLIC
  305. bool "mdc, mwc"
  306. help
  307. mdc - memory display cyclic
  308. mwc - memory write cyclic
  309. config CMD_MEMINFO
  310. bool "meminfo"
  311. help
  312. Display memory information.
  313. config CMD_UNZIP
  314. bool "unzip"
  315. help
  316. Uncompress a zip-compressed memory region.
  317. config CMD_ZIP
  318. bool "zip"
  319. help
  320. Compress a memory region with zlib deflate method.
  321. endmenu
  322. menu "Device access commands"
  323. config CMD_DM
  324. bool "dm - Access to driver model information"
  325. depends on DM
  326. default y
  327. help
  328. Provides access to driver model data structures and information,
  329. such as a list of devices, list of uclasses and the state of each
  330. device (e.g. activated). This is not required for operation, but
  331. can be useful to see the state of driver model for debugging or
  332. interest.
  333. config CMD_DEMO
  334. bool "demo - Demonstration commands for driver model"
  335. depends on DM
  336. help
  337. Provides a 'demo' command which can be used to play around with
  338. driver model. To use this properly you will need to enable one or
  339. both of the demo devices (DM_DEMO_SHAPE and DM_DEMO_SIMPLE).
  340. Otherwise you will always get an empty list of devices. The demo
  341. devices are defined in the sandbox device tree, so the easiest
  342. option is to use sandbox and pass the -d point to sandbox's
  343. u-boot.dtb file.
  344. config CMD_LOADB
  345. bool "loadb"
  346. default y
  347. help
  348. Load a binary file over serial line.
  349. config CMD_LOADS
  350. bool "loads"
  351. default y
  352. help
  353. Load an S-Record file over serial line
  354. config CMD_FLASH
  355. bool "flinfo, erase, protect"
  356. default y
  357. help
  358. NOR flash support.
  359. flinfo - print FLASH memory information
  360. erase - FLASH memory
  361. protect - enable or disable FLASH write protection
  362. config CMD_GPT
  363. bool "GPT (GUID Partition Table) command"
  364. select PARTITION_UUIDS
  365. select EFI_PARTITION
  366. help
  367. Enable the 'gpt' command to ready and write GPT style partition
  368. tables.
  369. config CMD_ARMFLASH
  370. #depends on FLASH_CFI_DRIVER
  371. bool "armflash"
  372. help
  373. ARM Ltd reference designs flash partition access
  374. config CMD_MMC
  375. bool "mmc"
  376. help
  377. MMC memory mapped support.
  378. config CMD_NAND
  379. bool "nand"
  380. default y if NAND_SUNXI
  381. help
  382. NAND support.
  383. if CMD_NAND
  384. config CMD_NAND_TRIMFFS
  385. bool "nand write.trimffs"
  386. default y if ARCH_SUNXI
  387. help
  388. Allows one to skip empty pages when flashing something on a NAND.
  389. config CMD_NAND_LOCK_UNLOCK
  390. bool "nand lock/unlock"
  391. help
  392. NAND locking support.
  393. config CMD_NAND_TORTURE
  394. bool "nand torture"
  395. help
  396. NAND torture support.
  397. endif # CMD_NAND
  398. config CMD_PART
  399. bool "part"
  400. select PARTITION_UUIDS
  401. help
  402. Read and display information about the partition table on
  403. various media.
  404. config CMD_SF
  405. bool "sf"
  406. help
  407. SPI Flash support
  408. config CMD_SPI
  409. bool "sspi"
  410. help
  411. SPI utility command.
  412. config CMD_I2C
  413. bool "i2c"
  414. help
  415. I2C support.
  416. config CMD_USB
  417. bool "usb"
  418. help
  419. USB support.
  420. config CMD_DFU
  421. bool "dfu"
  422. select USB_FUNCTION_DFU
  423. help
  424. Enables the command "dfu" which is used to have U-Boot create a DFU
  425. class device via USB.
  426. config CMD_USB_MASS_STORAGE
  427. bool "UMS usb mass storage"
  428. help
  429. USB mass storage support
  430. config CMD_FPGA
  431. bool "fpga"
  432. default y
  433. help
  434. FPGA support.
  435. config CMD_REMOTEPROC
  436. bool "remoteproc"
  437. depends on REMOTEPROC
  438. help
  439. Support for Remote Processor control
  440. config CMD_GPIO
  441. bool "gpio"
  442. help
  443. GPIO support.
  444. endmenu
  445. menu "Shell scripting commands"
  446. config CMD_ECHO
  447. bool "echo"
  448. default y
  449. help
  450. Echo args to console
  451. config CMD_ITEST
  452. bool "itest"
  453. default y
  454. help
  455. Return true/false on integer compare.
  456. config CMD_SOURCE
  457. bool "source"
  458. default y
  459. help
  460. Run script from memory
  461. config CMD_SETEXPR
  462. bool "setexpr"
  463. default y
  464. help
  465. Evaluate boolean and math expressions and store the result in an env
  466. variable.
  467. Also supports loading the value at a memory location into a variable.
  468. If CONFIG_REGEX is enabled, setexpr also supports a gsub function.
  469. endmenu
  470. menu "Network commands"
  471. config CMD_NET
  472. bool "bootp, tftpboot"
  473. select NET
  474. default y
  475. help
  476. Network commands.
  477. bootp - boot image via network using BOOTP/TFTP protocol
  478. tftpboot - boot image via network using TFTP protocol
  479. config CMD_TFTPPUT
  480. bool "tftp put"
  481. help
  482. TFTP put command, for uploading files to a server
  483. config CMD_TFTPSRV
  484. bool "tftpsrv"
  485. help
  486. Act as a TFTP server and boot the first received file
  487. config CMD_RARP
  488. bool "rarpboot"
  489. help
  490. Boot image via network using RARP/TFTP protocol
  491. config CMD_DHCP
  492. bool "dhcp"
  493. help
  494. Boot image via network using DHCP/TFTP protocol
  495. config CMD_PXE
  496. bool "pxe"
  497. select MENU
  498. help
  499. Boot image via network using PXE protocol
  500. config CMD_NFS
  501. bool "nfs"
  502. default y
  503. help
  504. Boot image via network using NFS protocol.
  505. config CMD_MII
  506. bool "mii"
  507. help
  508. Enable MII utility commands.
  509. config CMD_PING
  510. bool "ping"
  511. help
  512. Send ICMP ECHO_REQUEST to network host
  513. config CMD_CDP
  514. bool "cdp"
  515. help
  516. Perform CDP network configuration
  517. config CMD_SNTP
  518. bool "sntp"
  519. help
  520. Synchronize RTC via network
  521. config CMD_DNS
  522. bool "dns"
  523. help
  524. Lookup the IP of a hostname
  525. config CMD_LINK_LOCAL
  526. bool "linklocal"
  527. help
  528. Acquire a network IP address using the link-local protocol
  529. endmenu
  530. menu "Misc commands"
  531. config CMD_BKOPS_ENABLE
  532. bool "mmc bkops enable"
  533. depends on CMD_MMC
  534. default n
  535. help
  536. Enable command for setting manual background operations handshake
  537. on a eMMC device. The feature is optionally available on eMMC devices
  538. conforming to standard >= 4.41.
  539. config CMD_BLOCK_CACHE
  540. bool "blkcache - control and stats for block cache"
  541. depends on BLOCK_CACHE
  542. default y if BLOCK_CACHE
  543. help
  544. Enable the blkcache command, which can be used to control the
  545. operation of the cache functions.
  546. This is most useful when fine-tuning the operation of the cache
  547. during development, but also allows the cache to be disabled when
  548. it might hurt performance (e.g. when using the ums command).
  549. config CMD_CACHE
  550. bool "icache or dcache"
  551. help
  552. Enable the "icache" and "dcache" commands
  553. config CMD_TIME
  554. bool "time"
  555. help
  556. Run commands and summarize execution time.
  557. # TODO: rename to CMD_SLEEP
  558. config CMD_MISC
  559. bool "sleep"
  560. default y
  561. help
  562. Delay execution for some time
  563. config CMD_TIMER
  564. bool "timer"
  565. help
  566. Access the system timer.
  567. config CMD_SETGETDCR
  568. bool "getdcr, setdcr, getidcr, setidcr"
  569. depends on 4xx
  570. default y
  571. help
  572. getdcr - Get an AMCC PPC 4xx DCR's value
  573. setdcr - Set an AMCC PPC 4xx DCR's value
  574. getidcr - Get a register value via indirect DCR addressing
  575. setidcr - Set a register value via indirect DCR addressing
  576. config CMD_SOUND
  577. bool "sound"
  578. depends on SOUND
  579. help
  580. This provides basic access to the U-Boot's sound support. The main
  581. feature is to play a beep.
  582. sound init - set up sound system
  583. sound play - play a sound
  584. config CMD_QFW
  585. bool "qfw"
  586. select QFW
  587. help
  588. This provides access to the QEMU firmware interface. The main
  589. feature is to allow easy loading of files passed to qemu-system
  590. via -kernel / -initrd
  591. source "cmd/mvebu/Kconfig"
  592. endmenu
  593. config CMD_BOOTSTAGE
  594. bool "Enable the 'bootstage' command"
  595. depends on BOOTSTAGE
  596. help
  597. Add a 'bootstage' command which supports printing a report
  598. and un/stashing of bootstage data.
  599. menu "Power commands"
  600. config CMD_PMIC
  601. bool "Enable Driver Model PMIC command"
  602. depends on DM_PMIC
  603. help
  604. This is the pmic command, based on a driver model pmic's API.
  605. Command features are unchanged:
  606. - list - list pmic devices
  607. - pmic dev <id> - show or [set] operating pmic device (NEW)
  608. - pmic dump - dump registers
  609. - pmic read address - read byte of register at address
  610. - pmic write address - write byte to register at address
  611. The only one change for this command is 'dev' subcommand.
  612. config CMD_REGULATOR
  613. bool "Enable Driver Model REGULATOR command"
  614. depends on DM_REGULATOR
  615. help
  616. This command is based on driver model regulator's API.
  617. User interface features:
  618. - list - list regulator devices
  619. - regulator dev <id> - show or [set] operating regulator device
  620. - regulator info - print constraints info
  621. - regulator status - print operating status
  622. - regulator value <val] <-f> - print/[set] voltage value [uV]
  623. - regulator current <val> - print/[set] current value [uA]
  624. - regulator mode <id> - print/[set] operating mode id
  625. - regulator enable - enable the regulator output
  626. - regulator disable - disable the regulator output
  627. The '-f' (force) option can be used for set the value which exceeds
  628. the limits, which are found in device-tree and are kept in regulator's
  629. uclass platdata structure.
  630. endmenu
  631. menu "Security commands"
  632. config CMD_TPM
  633. bool "Enable the 'tpm' command"
  634. depends on TPM
  635. help
  636. This provides a means to talk to a TPM from the command line. A wide
  637. range of commands if provided - see 'tpm help' for details. The
  638. command requires a suitable TPM on your board and the correct driver
  639. must be enabled.
  640. config CMD_TPM_TEST
  641. bool "Enable the 'tpm test' command"
  642. depends on CMD_TPM
  643. help
  644. This provides a a series of tests to confirm that the TPM is working
  645. correctly. The tests cover initialisation, non-volatile RAM, extend,
  646. global lock and checking that timing is within expectations. The
  647. tests pass correctly on Infineon TPMs but may need to be adjusted
  648. for other devices.
  649. endmenu
  650. menu "Firmware commands"
  651. config CMD_CROS_EC
  652. bool "Enable crosec command"
  653. depends on CROS_EC
  654. default y
  655. help
  656. Enable command-line access to the Chrome OS EC (Embedded
  657. Controller). This provides the 'crosec' command which has
  658. a number of sub-commands for performing EC tasks such as
  659. updating its flash, accessing a small saved context area
  660. and talking to the I2C bus behind the EC (if there is one).
  661. endmenu
  662. menu "Filesystem commands"
  663. config CMD_EXT2
  664. bool "ext2 command support"
  665. help
  666. Enables EXT2 FS command
  667. config CMD_EXT4
  668. bool "ext4 command support"
  669. help
  670. Enables EXT4 FS command
  671. config CMD_EXT4_WRITE
  672. depends on CMD_EXT4
  673. bool "ext4 write command support"
  674. help
  675. Enables EXT4 FS write command
  676. config CMD_FAT
  677. bool "FAT command support"
  678. help
  679. Support for the FAT fs
  680. config CMD_FS_GENERIC
  681. bool "filesystem commands"
  682. help
  683. Enables filesystem commands (e.g. load, ls) that work for multiple
  684. fs types.
  685. config CMD_MTDPARTS
  686. depends on ARCH_SUNXI
  687. bool "MTD partition support"
  688. help
  689. MTD partition support
  690. config MTDIDS_DEFAULT
  691. string "Default MTD IDs"
  692. depends on CMD_MTDPARTS
  693. help
  694. Defines a default MTD ID
  695. config MTDPARTS_DEFAULT
  696. string "Default MTD partition scheme"
  697. depends on CMD_MTDPARTS
  698. help
  699. Defines a default MTD partitioning scheme in the Linux MTD command
  700. line partitions format
  701. endmenu
  702. config CMD_UBI
  703. tristate "Enable UBI - Unsorted block images commands"
  704. select CRC32
  705. select MTD_UBI
  706. default y if NAND_SUNXI
  707. help
  708. UBI is a software layer above MTD layer which admits use of LVM-like
  709. logical volumes on top of MTD devices, hides some complexities of
  710. flash chips like wear and bad blocks and provides some other useful
  711. capabilities. Please, consult the MTD web site for more details
  712. (www.linux-mtd.infradead.org). Activate this option if you want
  713. to use U-Boot UBI commands.
  714. config CMD_UBIFS
  715. tristate "Enable UBIFS - Unsorted block images filesystem commands"
  716. depends on CMD_UBI
  717. select CRC32
  718. select RBTREE if ARCH_SUNXI
  719. select LZO if ARCH_SUNXI
  720. default y if NAND_SUNXI
  721. help
  722. UBIFS is a file system for flash devices which works on top of UBI.
  723. endmenu