Modify eu-strip option to perform strip in post script of rpm package & add option...
[platform/upstream/rpm.git] / scripts / firmware.prov
1 #!/bin/sh
2 # Add firmware files in /lib/firmware into RPM provides
3
4 while read instfile ; do
5   case $instfile in
6     */lib/firmware/*) test -f "$instfile" && echo "firmware(${instfile##*/lib/firmware/})" ;;
7   esac
8 done