Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neurobin/MT7630E
Modified easy installation package
https://github.com/neurobin/MT7630E
Last synced: 6 days ago
JSON representation
Modified easy installation package
- Host: GitHub
- URL: https://github.com/neurobin/MT7630E
- Owner: neurobin
- Created: 2014-08-31T19:43:06.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2020-06-01T18:21:45.000Z (over 4 years ago)
- Last Synced: 2024-08-02T20:45:22.048Z (3 months ago)
- Language: C
- Homepage: https://neurobin.org/projects/softwares/unix/MT7630E/
- Size: 885 KB
- Stars: 233
- Watchers: 36
- Forks: 72
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
**This repository is not maintained by @neurobin any more. If anyone is interested to take over, please leave a comment at [https://github.com/neurobin/MT7630E/issues/90](https://github.com/neurobin/MT7630E/issues/90)**
Easy installation package for Mediatek MT7630E Wifi + Bluetooth Combo Linux Driver. The official driver was found at http://www.mediatek.com/en/downloads/mt7630-pcie/ (this link no longer exists)
# 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)# Installation
**You need kernel headers to build the driver**
As an example, on Debian and derivatives, assuming you're on an amd64 system:
```sh
sudo apt install build-essential linux-headers-amd64
```That's all for dependencies.
First give some file execution permission:
chmod +x install test uninstall bpatch
Now to install it, run:
./install
To test it without installing, run:
./test
To uninstall, run:
./uninstall
To install with dkms:
sudo make dkms
The driver will automatically load at startup...
# Installing inside a container (chroot) environment
Pass the kernel version as an argument with install or uninstall script:
```bash
sudo ./install kernel-version
sudo ./uninstall kernel-version
sudo ./test kernel-version
```
With `make`, the argument shall be `KERNEL=kernel-version````bash
sudo make dkms KERNEL=kernel-version
sudo make install KERNEL=kernel-version
```### Bluetooth
For kernel 3.13 - 3.16 bluetooth may work without any extra efforts, but for higher kernels it may not work at all. A kernel patch for the bluetooth driver may be needed to get it up and working.
If wifi works after installing the driver but bluetooth doesn't, you should first check if bluetooth is hard/soft blocked. If it is blocked then remove the block, but if that's not the case then we have a patch for you that you can apply to your kernel.
#### Test blocking state:
To check if bluetooth is hard/soft blocked, run `rfkill list`. It will show you something like this:```sh
1: hci0: Bluetooth
Soft blocked: yes
Hard blocked: no
```If it is soft blocked, you can unblock it with:
```sh
sudo rfkill unblock bluetooth
```
If it is hard blocked then check if your PC has some kind of switch to turn it on or may be a key combination or a little haggle in the BIOS settings (you will have to investigate).If there is no block or unblocking from blocked state didn't do any good, then you should try the [patch](https://github.com/neurobin/MT7630E/wiki/Get-bluetooth-working-in-Linux-kernel--with-mt7630e).
**Without running all those commands manually, you can use the bpatch script to automatically patch it for you.**
#### Try the bpatch script
The **bpatch** script downloads the kernel source and tries to patch the bluetooth driver and insert the compiled module in the right place automatically. To apply patch with the **bpatch** script all you need to do is run it with root privilege.```sh
sudo ./bpatch
```
If you want to undo this patch:```sh
sudo ./bpatch -u
```If you have already downloaded the kernel source, then give the source directory path as an argument to the **bpatch** script with `-sd` option:
```sh
sudo ./bpatch -sd /path/to/kernel/source/dir
```**Note:** The **bpatch** script is for debian based systems and make sure to enable source code repository before running it. For Ubuntu this [link](http://askubuntu.com/questions/158871/how-do-i-enable-the-source-code-repositories) may help you enabling the source repository.
# Troubleshooting when upgrading kernel
### Install script
If you installed the driver with the `install` script, you will have to reinstall the drivers when you upgrade your kernel.
To do so, run:
```sh
./uninstall
./install
```If you don't uninstall, you will face problems like this:
```
modprobe: ERROR: could not insert 'mt7630e': Exec format error
modprobe: ERROR: could not insert 'mt76xx': Exec format error
```### DKMS
If you install with dkms then you won't need to uninstall/install for minor kernel updates. Major kernel updates may still need update/uninstall/install though.
## Secure Boot
Not being signed, this driver is **not expected to work on secure boot**.
## Source:
The original source was taken from https://github.com/kuba-moo/mt7630e
Some patches for extended kernel support are taken from https://github.com/benjarobin/MT7630E**Note:** Even though the original source was taken from kuba-moo, it no longer resembles that of the original. If you want to apply a patch that works with other sources, be ware that the line number and content may or may not match i.e you will have to be careful applying patches.
# Pull Requests
Please do all pull requests against the master branch. The `release` branch is for releases only.