openwrt编译orangepi R1 WiFi驱动

由于orangepi R1的WiFi模块是RTL8189ETV,而openwrt官方源码中并没有对该WiFi模块的驱动支持。在寻找驱动的过程中,使用过Hauke写的补丁,编译完成后,发现该WiFi模块只能工作在client模式,不能工作在ap模式。为了实现ap模式,终于在orangepi官网上找到了该WiFi驱动。点击访问

从云盘里下载后,有使用手册编译安装该WiFi驱动,不过我还是记录一下。

1. 下载源码

git clone git://github.com/openwrt/openwrt.git
git checkout 94993a79f8269274e9087d2ce3aed10f4e34cb5f
cd openwrt/
./scripts/feeds update -a
./scripts/feeds install -a

2. 将该补丁放入openwrt中

#1、Check the patch:
git apply --stat xxx.patch
git apply --check xxx.patch

#2、Put the patch into system:
git am --signoff < xxx.patch

3. 编译

make V=s

编译完成后,在bin目录下得到生成的镜像文件。

你可能感兴趣的:(openwrt编译orangepi R1 WiFi驱动)