blob: 12f8336eb32a8519e32c86956b1270f7272735b7 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
# Add firmware files in /lib/firmware into RPM provides
while read instfile ; do
case $instfile in
*/lib/firmware/*) test -f "$instfile" && echo "firmware(${instfile##*/lib/firmware/})" ;;
esac
done
|