Re: [android-porting] How to run insmod during boot-up?

2011-03-04 Thread Sean McNeil
Most likely, you are attempting to do them in the init.rc before the /system volume is mounted. On 3/4/2011 3:23 PM, Amit Pundir wrote: On Fri, Mar 4, 2011 at 11:48 AM, Lay wrote: Hi Android Porters, I would like to insmod 2 driver modules during boot-up. I tried adding the following lines t

Re: [android-porting] How to run insmod during boot-up?

2011-03-04 Thread Amit Pundir
On Fri, Mar 4, 2011 at 11:48 AM, Lay wrote: > Hi Android Porters, > > I would like to insmod 2 driver modules during boot-up. I tried adding > the following lines to init.rc > > insmod /system/lib/modules/rt2x00lib.ko > insmod /system/lib/modules/rt2x00usb.ko > > They do not seem to work. However,

[android-porting] How to run insmod during boot-up?

2011-03-03 Thread Lay
Hi Android Porters, I would like to insmod 2 driver modules during boot-up. I tried adding the following lines to init.rc insmod /system/lib/modules/rt2x00lib.ko insmod /system/lib/modules/rt2x00usb.ko They do not seem to work. However, if I run those lines on the command line, they work. Can so