Nossiac / mtk-openwrt-feeds

mtk-openwrt-feeds
428 stars 204 forks source link

Enable on boot. #68

Closed coldchip closed 6 years ago

coldchip commented 6 years ago

Hi, How can i enable the kernel module automatically upon boot? I am compiling for chip MT7628

cpktpoetkxwz commented 6 years ago

Firstly move mt7628.ko into '/lib/modules/xx.xx.xx/'. Then put a file that contains "mt7628" into '/etc/moodules.d'. touch /etc/modules.d/mt7628 echo "mt7628" >> /etc/modules.d/mt7628

coldchip commented 6 years ago

Thanks.