diff options
author | Thomas De Schampheleire <patrickdepinguin@gmail.com> | 2013-12-25 10:13:51 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-12-25 10:17:27 +0100 |
commit | 91a4ce48762154cd60de807c5d273ed72afffdf9 (patch) | |
tree | ebbaa9edb2b22194b750da6a83244dce4e00e40a | |
parent | da304633464c22e232d9cce47c5e811e144a4986 (diff) | |
download | buildroot-91a4ce48762154cd60de807c5d273ed72afffdf9.tar.gz buildroot-91a4ce48762154cd60de807c5d273ed72afffdf9.zip |
menu: visually split Shells from Utilities
As discussed in [1], add comments to distinghuish shells from utilities in
the 'Shells and Utilities' menu.
[1] http://lists.busybox.net/pipermail/buildroot/2013-December/083836.html
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/Config.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/package/Config.in b/package/Config.in index 3685807fb8..fe31cd2b0a 100644 --- a/package/Config.in +++ b/package/Config.in @@ -948,12 +948,14 @@ source "package/xenomai/Config.in" endmenu menu "Shell and utilities" -source "package/at/Config.in" +comment "Shells" if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS source "package/bash/Config.in" source "package/dash/Config.in" source "package/zsh/Config.in" endif +comment "Utilities" +source "package/at/Config.in" source "package/dialog/Config.in" source "package/dtach/Config.in" source "package/file/Config.in" |