Revision 9ea3fa729a44e69f66f1ae063148739ecc089a17 authored by Alex Deucher on 15 November 2019, 14:38:28 UTC, committed by Alex Deucher on 20 November 2019, 23:40:14 UTC
5.4 and newer works fine with navi14.

Reviewed-by: Xiaojie Yuan <xiaojie.yuan@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
1 parent af42d34
Raw File
modules-check.sh
#!/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 | sort | uniq -d)
	do
		echo "warning: same module names found:" >&2
		sed -n "/\/$m/s:^:  :p" modules.order >&2
	done
}

check_same_name_modules
back to top