62eb3095ea
OBS-URL: https://build.opensuse.org/package/show/Kernel:stable/kernel-source?expand=0&rev=1154
13 lines
245 B
Bash
13 lines
245 B
Bash
#!/bin/sh
|
|
|
|
rc=0
|
|
for file in $(find "$@" -name '*.ko' -o -name '*.ko.xz'); do
|
|
l=$(/sbin/modinfo -F license "$file")
|
|
if [ -z "$l" ]; then
|
|
echo "ERROR: No license is included for module ${file##*/lib/modules/}"
|
|
rc=1
|
|
fi
|
|
done
|
|
|
|
exit $rc
|