[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1513335768-7852-1-git-send-email-arend.vanspriel@broadcom.com>
Date: Fri, 15 Dec 2017 12:02:48 +0100
From: Arend van Spriel <arend.vanspriel@...adcom.com>
To: linux-kernel@...r.kernel.org
Cc: Andrew Morton <akpm@...ux-foundation.org>,
Robert Jarzmik <robert.jarzmik@...e.fr>,
Arend van Spriel <arend.vanspriel@...adcom.com>
Subject: [PATCH] scripts: tags: change find_other_sources() for include folders
The current find done in find_other_sources() excludes folders
in the kernel tree that are named 'include', eg.:
./security/apparmor/include
./security/selinux/include
./drivers/net/wireless/broadcom/brcm80211/include
./drivers/gpu/drm/amd/acp/include
./drivers/gpu/drm/amd/display/include
./drivers/gpu/drm/amd/include
./drivers/gpu/drm/nouveau/include
This changes the find command in the find_other_sources() function
to include those using the -path option.
Signed-off-by: Arend van Spriel <arend.vanspriel@...adcom.com>
---
scripts/tags.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/tags.sh b/scripts/tags.sh
index d23dcbf..78e546f 100755
--- a/scripts/tags.sh
+++ b/scripts/tags.sh
@@ -77,7 +77,7 @@ find_include_sources()
find_other_sources()
{
find ${tree}* $ignore \
- \( -name include -o -name arch -o -name '.tmp_*' \) -prune -o \
+ \( -path ${tree}include -o -path ${tree}arch -o -name '.tmp_*' \) -prune -o \
-name "$1" -not -type l -print;
}
--
1.9.1
Powered by blists - more mailing lists