muratdemirtas / MT7601u

Ubuntu and Embedded Linux(Raspberry Pi, Banana Pi etc.) drivers for MediaTek MT7601u Wireless Chipset. Support Access Point(AP) and Station Mode(STA). Tested on 32-64 Bit Ubuntu and Raspberry Pi 2 with all kernels since v4.0.0+. You can use this driver for internet sharing(hotspot), robotic, file transfer or ssh.
Other
93 stars 44 forks source link

there is one mistake in your readme #4

Open zg9uagfv opened 6 years ago

zg9uagfv commented 6 years ago

original: sudo cp -v /lib/modules/$(uname -r)/build/Module.symvers src/os/# linux sudo make clean && make all && make install sudo rm -rvf src/os/linux/Module.symvers

you miss "&&" between "linux" and "sudo".

correct: sudo cp -v /lib/modules/$(uname -r)/build/Module.symvers src/os/linux && sudo make clean && make all && make install sudo rm -rvf src/os/linux/Module.symvers

phpsyscoder commented 6 years ago

also missing && between make install and sudo rm

correct[2]: sudo cp -v /lib/modules/$(uname -r)/build/Module.symvers src/os/linux && sudo make clean && make all && make install && sudo rm -rvf src/os/linux/Module.symvers

muratdemirtas commented 6 years ago

i fixed, thanks.

qureshiowais91 commented 5 years ago

explain what each command does !! cant load driver!!