Current Path :
/
usr
/
lib
/
rpm
/
redhat
/
find-provides.d
/
Or
Select Your Path :
Upload File :
New :
File
Dir
//usr/lib/rpm/redhat/find-provides.d/firmware.prov
#!/bin/sh # # firmware.prov - Automatically extract any and all firmware dependencies from # kernel object (.ko) files and add to RPM deps. IFS=$'\n' for module in $(grep -E '/lib/modules/.+\.ko$') $*; do for firmware in `/sbin/modinfo -F firmware $module`; do echo "firmware($firmware)" done done