Skip to content

Commit fe95a9a

Browse files
cyberknight777Mayankgaj
authored andcommitted
This is an auto generated commit. Signed-off-by: Cyber Knight <cyberknight755@gmail.com>
1 parent f1713d1 commit fe95a9a

502 files changed

Lines changed: 392944 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

drivers/staging/rtl8188eus/.gitgnore

Whitespace-only changes.
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
## Build Kernel Headers
2+
3+
```
4+
cd [your kernel source directory]
5+
make module_prepare
6+
make modules_install INSTALL_MOD_PATH=../
7+
```
8+
9+
## Build RTL8188EUS driver/modules
10+
11+
```
12+
cd ../
13+
git clone https://github.com/aircrack-ng/rtl8188eus -b v5.3.9
14+
cd rtl8188eus
15+
```
16+
17+
That command places this driver behind your kernel source directory (RECOMMENDED).
18+
If you put it anywhere you might need to set the Makefile in this driver, but i won't explain it.
19+
Now, do:
20+
21+
```
22+
export ARCH=arm64
23+
export SUBARCH=arm64
24+
export CROSS_COMPILE=../toolchain/toolchain64/bin/aarch64-linux-android-
25+
export KBUILD_KVER=3.10.73-NetHunter-something
26+
```
27+
28+
arm64 is the device architecture.
29+
CROSS_COMPILE is your toolchain directory.
30+
KBUILD_KVER is your kernel build version, you can search for it in ../lib/modules (the place of your modules_install when you build kernel headers).
31+
32+
Now, do:
33+
```
34+
make
35+
```
36+
37+
If there is no error or success you will see a file named 8188eu.ko in this driver directory.
38+
39+
40+
## Load the driver (8188eu.ko)
41+
```
42+
su
43+
cd /system/lib/modules
44+
insmod 8188eu.ko
45+
```
46+

drivers/staging/rtl8188eus/Kconfig

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
config RTL8188EU
2+
tristate "Realtek 8188E USB WiFi"
3+
depends on USB
4+
---help---
5+
Help message of RTL8188EU
6+

0 commit comments

Comments
 (0)