-
-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 027ae96
Showing
57 changed files
with
50,458 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
.PHONY: all clean install uninstall | ||
|
||
KDIR ?= /lib/modules/`uname -r`/build | ||
DST_DIR ?= /lib/modules/`uname -r`/kernel/drivers/net/wireless/ | ||
|
||
all: | ||
$(MAKE) -C $(KDIR) M=$(CURDIR)/rt2x00 modules | ||
$(MAKE) -C $(KDIR) M=$(CURDIR)/btloader modules | ||
|
||
clean: | ||
$(MAKE) -C $(KDIR) M=$(CURDIR)/rt2x00 clean | ||
$(MAKE) -C $(KDIR) M=$(CURDIR)/btloader clean | ||
|
||
install: | ||
cp -v firmware/*/* /lib/firmware/ | ||
cp rt2x00/mt7630e.ko $(DST_DIR) | ||
cp btloader/mt76xx.ko $(DST_DIR) | ||
depmod | ||
|
||
uninstall: | ||
rm -vf /lib/firmware/mt76x0.bin /lib/firmware/MT7650E234.bin | ||
rm -vf $(DST_DIR)/mt7630e.ko | ||
rm -vf $(DST_DIR)/mt76xx.ko | ||
depmod |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
MT7630E | ||
======= | ||
Easy installation package for the official driver at http://www.mediatek.com/en/downloads/mt7630-pcie/ | ||
|
||
|
||
*************************************************************************************************************************** | ||
Mediatek MT7630E Combo Linux Driver User Guide | ||
*************************************************************************************************************************** | ||
|
||
1. Component | ||
------------ | ||
|
||
* rt2x00: Wi-Fi driver source code | ||
* btloader: Bluetooth firmware loader source code | ||
* firmware: Firmware binary code (MT7650E234.bin is for Wi-Fi, mt76x0.bin is for Bluetooth) | ||
|
||
|
||
2. Installation | ||
---------------- | ||
|
||
First give some file execution permission: | ||
|
||
chmod +x install test uninstall | ||
Now to install it, run: | ||
|
||
./install | ||
To test it without installing, run: | ||
|
||
./test | ||
To uninstall, run: | ||
|
||
./uninstall | ||
|
||
|
||
The driver will automatically load at startup.... | ||
|
||
Source: | ||
------- | ||
|
||
This copy of driver was taken from https://github.com/kuba-moo/mt7630e | ||
|
||
Webpage: | ||
-------- | ||
http://mdjahidulhamid.github.io/MT7630E/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
obj-m := mt76xx.o | ||
|
||
KDIR ?= /lib/modules/`uname -r`/build | ||
|
||
all: | ||
$(MAKE) -C $(KDIR) M=$(PWD) modules | ||
clean: | ||
$(MAKE) -C $(KDIR) M=$(PWD) clean |
Oops, something went wrong.