09d1176e1e
Fixes: http://autobuild.buildroot.net/results/317/3177b7d6168eec0620e4a1ade9166c9c84929e6e/ [Peter: add comment when not available] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
22 lines
516 B
Plaintext
22 lines
516 B
Plaintext
config BR2_PACKAGE_NANO
|
|
bool "nano"
|
|
depends on BR2_USE_WCHAR
|
|
# full version uses fork()
|
|
select BR2_PACKAGE_NANO_TINY if !BR2_USE_MMU
|
|
select BR2_PACKAGE_NCURSES
|
|
help
|
|
A nice ncurses-based editor. Started out as a clone of pico.
|
|
Great editor for new users.
|
|
|
|
http://www.nano-editor.org/
|
|
|
|
config BR2_PACKAGE_NANO_TINY
|
|
bool "optimize for size"
|
|
default y
|
|
depends on BR2_PACKAGE_NANO
|
|
help
|
|
Disable all features for the sake of size.
|
|
|
|
comment "nano needs a toolchain w/ wchar"
|
|
depends on !BR2_USE_WCHAR
|