Config.in 516 B

123456789101112131415161718192021222324
  1. config BR2_PACKAGE_NANO
  2. bool "nano"
  3. depends on BR2_USE_WCHAR
  4. # full version uses fork()
  5. select BR2_PACKAGE_NANO_TINY if !BR2_USE_MMU
  6. select BR2_PACKAGE_NCURSES
  7. help
  8. A nice ncurses-based editor. Started out as a clone of pico.
  9. Great editor for new users.
  10. https://www.nano-editor.org/
  11. if BR2_PACKAGE_NANO
  12. config BR2_PACKAGE_NANO_TINY
  13. bool "optimize for size"
  14. default y
  15. help
  16. Disable all features for the sake of size.
  17. endif
  18. comment "nano needs a toolchain w/ wchar"
  19. depends on !BR2_USE_WCHAR