Re: listing drivers

2013-01-23 Thread Arend van Spriel
On 01/23/2013 04:30 PM, Thiago Farina wrote: > Hi, > > On Tue, Jan 22, 2013 at 12:27 PM, Arend van Spriel wrote: >> 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 i

Re: listing drivers

2013-01-23 Thread Thiago Farina
Hi, On Tue, Jan 22, 2013 at 12:27 PM, Arend van Spriel wrote: > 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

Re: listing drivers

2013-01-22 Thread zhuyj
On 01/22/2013 10:27 PM, Arend van Spriel wrote: 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

Re: listing drivers

2013-01-22 Thread Arend van Spriel
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 m