Kconfig 604 B

123456789101112131415161718192021222324252627282930313233
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see the file kconfig-language.txt in the NuttX tools repository.
  4. #
  5. if ARCH_BOARD_EA3152
  6. if PAGING
  7. config EA3152_PAGING_MINOR
  8. int "Page device minor number"
  9. default 0
  10. config EA3152_PAGING_MOUNTPT
  11. string "Page device mount point"
  12. default "/mnt/pgsrc"
  13. config EA3152_PAGING_BINOFFSET
  14. int "Volume offset"
  15. default 0
  16. config EA3152_PAGING_SDSLOT
  17. int "SD page device slot number"
  18. default 0
  19. depends on MMCSD
  20. config EA3152_PAGING_SPIPORT
  21. int "SD SPI port number"
  22. default 0
  23. depends on SPI
  24. endif # PAGING
  25. endif # ARCH_BOARD_EA3152