summaryrefslogtreecommitdiff
path: root/scripts/modules-check.sh
blob: 2f659530e1ec47fcd2a7567df4aca91f13590d42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0

set -e

# Check uniqueness of module names
check_same_name_modules()
{
	for m in $(sed 's:.*/::' modules.order modules.builtin | sort | uniq -d)
	do
		echo "warning: same basename if the following are built as modules:" >&2
		sed "/\/$m/!d;s:^kernel/:  :" modules.order modules.builtin >&2
	done
}

check_same_name_modules