xref: /OK3568_Linux_fs/buildroot/package/nano/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config 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
11	  https://www.nano-editor.org/
12
13if BR2_PACKAGE_NANO
14
15config BR2_PACKAGE_NANO_TINY
16	bool "optimize for size"
17	default y
18	help
19	  Disable all features for the sake of size.
20
21endif
22
23comment "nano needs a toolchain w/ wchar"
24	depends on !BR2_USE_WCHAR
25