Welcome to mirror list, hosted at ThFree Co, Russian Federation.

modules-check.sh « scripts - github.com/torvalds/linux.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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