Kconfig 550 B

12345678910111213141516171819202122232425262728293031323334
  1. menu "Command line interface"
  2. depends on !SPL_BUILD
  3. config CMD_BOOTM
  4. bool "Enable bootm command"
  5. default y
  6. help
  7. Boot an application image from the memory.
  8. config CMD_CRC32
  9. bool "Enable crc32 command"
  10. default y
  11. help
  12. Compute CRC32.
  13. config CMD_EXPORTENV
  14. bool "Enable env export command"
  15. default y
  16. help
  17. Export environments.
  18. config CMD_IMPORTENV
  19. bool "Enable env import command"
  20. default y
  21. help
  22. Import environments.
  23. config CMD_GO
  24. bool "Enable go command"
  25. default y
  26. help
  27. Start an application at a given address.
  28. endmenu