-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathreadme.rnd
44 lines (27 loc) · 1.23 KB
/
readme.rnd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# wfx-feed
Silabs WFX Wifi SoC driver port for OpenWRT.
* This is still a Work in progress,
## Table of Contents
- [Prerequisites](#prerequisites)
- [Install](#install)
- [Contribute](#contribute)
## Prerequisites
Ensure your Openwrt build system works : [OpenWRT](https://openwrt.org/docs/guide-developer/build-system/install-buildsystem),
## Install
Edit your feeds.conf or feed.conf.default and add the following to it:
# WFX feed
src-git wfx https://github.com/riotnetwork/wfx-openwrt/
Update your build environment and install the packages:
$ scripts/feeds update wfx
$ scripts/feeds install -a -p wfx
$ make menuconfig
Driver is located in `Kernel modules -> Wireless Drivers -> kmod-wfx`
<*> kmod-wfx.................................... Silabs WF200 Wireless Driver
Exit, save and build
$ make -j4
Ensure that you have SPI or MMC drivers and that your devcietree [is configurd as per Silabs' example](https://github.com/SiliconLabs/wfx-linux-tools/tree/master/overlays) and modified to your specific platform
( assuming your platform uses DTS )
## Contribute
Found a bug? Please create an issue on GitHub:
https://github.com/riotnetwork/wfx-openwrt/issues
Further tests and PR's are welcome and appreciated.