KConfig 599 B

1234567891011121314151617181920212223242526272829
  1. menu "POSIX layer and C standard library"
  2. config RT_USING_LIBC
  3. bool "Enable libc APIs from toolchain"
  4. default y
  5. config RT_USING_PTHREADS
  6. bool "Enable pthreads APIs"
  7. default n
  8. if RT_USING_LIBC
  9. config RT_USING_POSIX
  10. bool "Enable POSIX layer for poll/select, stdin etc"
  11. select RT_USING_DFS
  12. select RT_USING_DFS_DEVFS
  13. default y
  14. if RT_USING_POSIX
  15. config RT_USING_POSIX_MMAP
  16. bool "Enable mmap() api"
  17. default n
  18. config RT_USING_POSIX_TERMIOS
  19. bool "Enable termios feature"
  20. default n
  21. endif
  22. endif
  23. endmenu