On 01/22/2013 02:46 PM, Thiago Farina wrote: > Hi folks, > > Is there a way to list the drivers installed/used in my desktop and > map them (the path) to their source code in the linux kernel tree?
This might work for you (if using bash): for m in $(cat /proc/modules | gawk '{ print $1; }');do modinfo $m | grep 'filename:'; done Maybe any awk flavor will do. Gr. AvS > Thanks, > -- > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to majord...@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/