Commit 8ec5a866 authored by Julien Boibessot's avatar Julien Boibessot Committed by Peter Korsgaard
Browse files

package: Don't hide all editors in menuconfig



Don't hide all editors in config if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS is not
selected. Indeed vi is the only editor already provided by busybox.

Signed-off-by: default avatarJulien Boibessot <julien.boibessot@armadeus.com>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 31d34b42
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -114,14 +114,9 @@ endif

source "package/database/Config.in"

if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
# busybox has an editor

# text editors
source "package/editors/Config.in"

endif

menu "Networking"

comment "Networking applications"
+3 −0
Original line number Diff line number Diff line
@@ -2,5 +2,8 @@ menu "Text editors"
source "package/editors/ed/Config.in"
source "package/editors/nano/Config.in"
source "package/editors/uemacs/Config.in"
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
# busybox has vi
source "package/editors/vim/Config.in"
endif
endmenu