Kconfig 452 B

1234567891011121314
  1. menuconfig LWP_USING_TERMINAL
  2. bool "Terminal I/O Subsystem"
  3. depends on RT_USING_SMART
  4. default y
  5. select RT_USING_SERIAL_BYPASS
  6. if LWP_USING_TERMINAL
  7. config LWP_PTY_MAX_PARIS_LIMIT
  8. int "Max number of pty devices registered at the same time"
  9. default 32
  10. help
  11. This upper limit is set to protect kernel memory from draining
  12. out by the application if it keeps allocating pty devices.
  13. endif