kuba-moo / mt7630e

Mediatek driver for MT7630E WiFi+BT combo with my fixes
42 stars 8 forks source link

load wifi driver on startup #1

Closed fferraro87 closed 9 years ago

fferraro87 commented 9 years ago

how can i load this wifi driver at startup?

kuba-moo commented 9 years ago

You can either do the common trick by putting the insmod command into rc.local or copy the driver to the driver directory and run depmod:

cp mt7630e.ko /lib/modules/`uname -r`/kernel/drivers/net/wireless
depmod

This will inform the automatic module loading component of the kernel about the new driver. Remember that you have to rebuild the driver after kernel updates.

fferraro87 commented 9 years ago

thanks i've used the second method! thanks again