OSDN Git Service

Merge tag 'for-5.8/drivers-2020-06-01' of git://git.kernel.dk/linux-block
[tomoyo/tomoyo-test1.git] / scripts / modules-check.sh
1 #!/bin/sh
2 # SPDX-License-Identifier: GPL-2.0
3
4 set -e
5
6 # Check uniqueness of module names
7 check_same_name_modules()
8 {
9         for m in $(sed 's:.*/::' modules.order | sort | uniq -d)
10         do
11                 echo "warning: same module names found:" >&2
12                 sed -n "/\/$m/s:^:  :p" modules.order >&2
13         done
14 }
15
16 check_same_name_modules