summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2019-06-28 13:22:09 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2019-08-14 09:59:59 -0400
commit38fe26b46f55538c2cb8b96500caed6ae9d59d46 (patch)
treed66292ceea81ed49d2598ad53149dcab5b4d7725
parentacb9f2d4755a70e31343f99791aa43b05401b996 (diff)
tools: Keep list of tools in alphabetical order
When `make help` is executed it lists the possible tools to build, though couple of entries is kept unordered. Fix it here. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Acked-by: Song Liu <songliubraving@fb.com> Cc: Alexei Starovoitov <ast@kernel.org> Cc: Daniel Borkmann <daniel@iogearbox.net> Cc: Martin KaFai Lau <kafai@fb.com> Cc: Yonghong Song <yhs@fb.com> Link: https://lkml.kernel.org/n/tip-0ke3p64ksa0hnbueh52n3v3q@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r--tools/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/Makefile b/tools/Makefile
index 68defd7ecf5d..7e42f7b8bfa7 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -10,6 +10,7 @@ help:
10 @echo 'Possible targets:' 10 @echo 'Possible targets:'
11 @echo '' 11 @echo ''
12 @echo ' acpi - ACPI tools' 12 @echo ' acpi - ACPI tools'
13 @echo ' bpf - misc BPF tools'
13 @echo ' cgroup - cgroup tools' 14 @echo ' cgroup - cgroup tools'
14 @echo ' cpupower - a tool for all things x86 CPU power' 15 @echo ' cpupower - a tool for all things x86 CPU power'
15 @echo ' debugging - tools for debugging' 16 @echo ' debugging - tools for debugging'
@@ -23,12 +24,11 @@ help:
23 @echo ' kvm_stat - top-like utility for displaying kvm statistics' 24 @echo ' kvm_stat - top-like utility for displaying kvm statistics'
24 @echo ' leds - LEDs tools' 25 @echo ' leds - LEDs tools'
25 @echo ' liblockdep - user-space wrapper for kernel locking-validator' 26 @echo ' liblockdep - user-space wrapper for kernel locking-validator'
26 @echo ' bpf - misc BPF tools' 27 @echo ' objtool - an ELF object analysis tool'
27 @echo ' pci - PCI tools' 28 @echo ' pci - PCI tools'
28 @echo ' perf - Linux performance measurement and analysis tool' 29 @echo ' perf - Linux performance measurement and analysis tool'
29 @echo ' selftests - various kernel selftests' 30 @echo ' selftests - various kernel selftests'
30 @echo ' spi - spi tools' 31 @echo ' spi - spi tools'
31 @echo ' objtool - an ELF object analysis tool'
32 @echo ' tmon - thermal monitoring and tuning tool' 32 @echo ' tmon - thermal monitoring and tuning tool'
33 @echo ' turbostat - Intel CPU idle stats and freq reporting tool' 33 @echo ' turbostat - Intel CPU idle stats and freq reporting tool'
34 @echo ' usb - USB testing tools' 34 @echo ' usb - USB testing tools'