13 lines
372 B
Bash
13 lines
372 B
Bash
#!/bin/sh
|
|
|
|
# run in root directory of extracted oneVPL-intel-gpu-intel-onevpl sources
|
|
for i in \
|
|
$(grep ", MFX_HW" _studio/shared/include/mfxstructures-int.h | \
|
|
grep 0x | \
|
|
sed 's/.*{.*0x//g' | \
|
|
cut -d "," -f1 | \
|
|
tr [:lower:] [:upper:] | \
|
|
sort -u); do
|
|
echo "Supplements: modalias(xorg-x11-server:pci:v00008086d0000${i}sv*sd*bc*sc*i*)"
|
|
done
|