-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME
46 lines (31 loc) · 1.02 KB
/
README
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
45
46
rt_hostap
==============
rt_hostap is a full implementation of WPA/WPA2 and targeted for RTOS,
which origins from hostap.
Features
--------
Supported 802.11 modes:
- Station
- AP
- P2P
Supported WPA/IEEE 802.11i features:
- WEP
- WPA-PSK ("WPA-Personal")
- RSN/WPA2 (IEEE 802.11i)
* pre-authentication
* PMKSA caching
Building
--------
In order to be able to build lw_hostap, you will first need to
select which parts of it will be included. This is done by creating a
build time configuration file, .config, in the directory hostap and
wpa_supplicant directory separately. Configuration options are text lines using
following format: CONFIG_<option>=y. Lines starting with # are considered
comments and are ignored. See defconfig file for an example configuration
and a list of available options and additional notes.
cp defconfig .config
After you have created a configuration file, you can build
lw_hostap with 'make' command.
make
For cross compilation, please set the environment variable CC.
CC=arm-linux-gcc make