diff options
author | Vicente Olivert Riera <Vincent.Riera@imgtec.com> | 2015-09-01 14:20:50 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-09-11 19:47:16 +0200 |
commit | 54b072e6930b38ecc2ba4fd1b3935568f51a5ed9 (patch) | |
tree | 923e61e555cc8a739d70f97694767960cd9534ab /package/util-linux | |
parent | 4335dbebe5925850f8c3879cfaa77bb6f1dde9e4 (diff) | |
download | buildroot-54b072e6930b38ecc2ba4fd1b3935568f51a5ed9.tar.gz buildroot-54b072e6930b38ecc2ba4fd1b3935568f51a5ed9.zip |
util-linux: show utilities alphabetically ordered
The list of util-linux utilities we can find on its Config.in file it
seems to be alphabetically ordered in purpose. However, there are some
of them which are in the wrong place. This patch fixes that.
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/util-linux')
-rw-r--r-- | package/util-linux/Config.in | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/package/util-linux/Config.in b/package/util-linux/Config.in index cc6e9a500b..d5c9812c37 100644 --- a/package/util-linux/Config.in +++ b/package/util-linux/Config.in @@ -149,15 +149,6 @@ config BR2_PACKAGE_UTIL_LINUX_MINIX help Minix filesystem support -config BR2_PACKAGE_UTIL_LINUX_NSENTER - bool "nsenter" - depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 - help - Enter the namespaces of another process. - -comment "nsenter needs a toolchain w/ headers >= 3.0" - depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 - config BR2_PACKAGE_UTIL_LINUX_MORE bool "more" select BR2_PACKAGE_NCURSES @@ -184,16 +175,25 @@ config BR2_PACKAGE_UTIL_LINUX_NOLOGIN help Politely refuse a login -config BR2_PACKAGE_UTIL_LINUX_PIVOT_ROOT - bool "pivot_root" +config BR2_PACKAGE_UTIL_LINUX_NSENTER + bool "nsenter" + depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 help - Change the root filesystem + Enter the namespaces of another process. + +comment "nsenter needs a toolchain w/ headers >= 3.0" + depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 config BR2_PACKAGE_UTIL_LINUX_PARTX bool "partition utilities" help Partition tools (addpart, delpart, partx) +config BR2_PACKAGE_UTIL_LINUX_PIVOT_ROOT + bool "pivot_root" + help + Change the root filesystem + config BR2_PACKAGE_UTIL_LINUX_RAW bool "raw" help |