Jon Masters 83405d7
#!/bin/sh
Jon Masters 83405d7
#
Jon Masters 83405d7
# firmware.prov - Automatically extract any and all firmware dependencies from
Jon Masters 83405d7
#                 kernel object (.ko) files and add to RPM deps.
Jon Masters 83405d7
Jon Masters 83405d7
IFS=$'\n'
Jon Masters 83405d7
Jon Masters 83405d7
for module in $(grep -E '/lib/modules/.+\.ko$') $*;
Jon Masters 83405d7
do
Jon Masters 83405d7
    for firmware in `/sbin/modinfo -F firmware $module`;
Jon Masters 83405d7
    do
Jon Masters 83405d7
        echo "firmware($firmware)"
Jon Masters 83405d7
    done
Jon Masters 83405d7
done