Last Updated: February 25, 2016
·
664
· bor

Get list of used(loaded) firmwares by kernel modules

modinfo -F firmware `lsmod | tail -n +2 | cut -f 1 -d ' '`

or

lsmod | tail -n +2 | cut -f 1 -d ' ' | xargs modinfo -F firmware