Takashi Iwai
b6fd520631
- Update to version 20240712 (git commit ed874ed83cac): * amdgpu: update DMCUB to v0.0.225.0 for Various AMDGPU Asics * qcom: add gpu firmwares for x1e80100 chipset (bsc#1219458) * linux-firmware: add firmware for qat_402xx devices * amdgpu: update raven firmware * amdgpu: update SMU 13.0.10 firmware * amdgpu: update SDMA 6.0.3 firmware * amdgpu: update PSP 13.0.10 firmware * amdgpu: update GC 11.0.3 firmware * amdgpu: update vega20 firmware * amdgpu: update PSP 13.0.5 firmware * amdgpu: update PSP 13.0.8 firmware * amdgpu: update vega12 firmware * amdgpu: update vega10 firmware * amdgpu: update VCN 4.0.0 firmware * amdgpu: update SDMA 6.0.0 firmware * amdgpu: update PSP 13.0.0 firmware * amdgpu: update GC 11.0.0 firmware * amdgpu: update picasso firmware * amdgpu: update beige goby firmware * amdgpu: update vangogh firmware * amdgpu: update dimgrey cavefish firmware * amdgpu: update navy flounder firmware * amdgpu: update PSP 13.0.11 firmware * amdgpu: update GC 11.0.4 firmware * amdgpu: update green sardine firmware * amdgpu: update VCN 4.0.2 firmware * amdgpu: update SDMA 6.0.1 firmware * amdgpu: update PSP 13.0.4 firmware * amdgpu: update GC 11.0.1 firmware OBS-URL: https://build.opensuse.org/request/show/1187294 OBS-URL: https://build.opensuse.org/package/show/Kernel:HEAD/kernel-firmware?expand=0&rev=490
34 lines
603 B
Bash
34 lines
603 B
Bash
#!/bin/sh
|
|
#
|
|
# Generate modalias Supplements lines for the given kernel-firmware topic
|
|
#
|
|
|
|
target=$1
|
|
modules=""
|
|
|
|
sorted_modules () {
|
|
for m in $*; do
|
|
m=$(echo $m | sed -e's/-/_/g')
|
|
echo $m
|
|
done | sort | uniq
|
|
}
|
|
|
|
while read first topic mods; do
|
|
if [ "$topic" = "$target" ]; then
|
|
first=${first%:}
|
|
if [ -z "$mods" ]; then
|
|
modules="$modules $first"
|
|
else
|
|
modules="$modules $mods"
|
|
fi
|
|
fi
|
|
done < topics.list
|
|
|
|
smodules=$(sorted_modules $modules)
|
|
|
|
for m in $smodules; do
|
|
grep '^'$m':' aliases.list | sed -e's/^.*: \(.*\)$/Supplements: modalias(\1)/g'
|
|
done | sort | uniq
|
|
|
|
exit 0
|