* [PATCH] scripts/tags.sh: ignore code of user space tools
@ 2014-04-21 8:03 Konstantin Khlebnikov
2014-04-24 13:17 ` Michal Marek
0 siblings, 1 reply; 2+ messages in thread
From: Konstantin Khlebnikov @ 2014-04-21 8:03 UTC (permalink / raw)
To: linux-kernel, linux-kbuild; +Cc: Michal Marek, Andrew Morton, Ingo Molnar
User space code in tools/ often reuses names of kernel constructions,
this confuses navigation in the normal kernel code. Let's fix this mess.
Signed-off-by: Konstantin Khlebnikov <koct9i@gmail.com>
---
scripts/tags.sh | 3 +++
1 file changed, 3 insertions(+)
diff --git a/scripts/tags.sh b/scripts/tags.sh
index f2c5b00..7f506e0 100755
--- a/scripts/tags.sh
+++ b/scripts/tags.sh
@@ -25,6 +25,9 @@ else
tree=${srctree}/
fi
+# ignore userspace tools
+ignore="$ignore ( -path ${tree}tools ) -prune -o"
+
# Find all available archs
find_all_archs()
{
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-04-24 13:17 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-21 8:03 [PATCH] scripts/tags.sh: ignore code of user space tools Konstantin Khlebnikov
2014-04-24 13:17 ` Michal Marek
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox