Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update support Jetson Nano (kernel 4.9.x) #21

Open
wants to merge 6 commits into
base: ARM-driver
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 16 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,30 @@
# Realtek USB Wireless Adapter Drivers
# Realtek USB Wireless Adapter Drivers
# [JETSON PLATFORM]

### Realtek USB Wireless Adapter Drivers [rtl8188fu] [0bda:f179]
> Added Jetson Nano Support (kernel 4.9.x) - 24/07/2021

> Tested also in Jetson TK1 (kernel 3.10.x) - 25/07/2021

### For Kernel 4.15.x ~ 5.9.x (ARM devices)

### Realtek USB Wireless Adapter Drivers [rtl8188fu] [0bda:f179]

------------------

![Alt text](/realtek-usb-wireless-adapter.jpg?raw=true "Realtek USB Wireless Adapter")

------------------
### [For Jetson TK 1 Only] Run this following command
`cd /usr/src/linux-headers-$(uname -r)`

`sudo make modules_prepare`


## How to install
`cd ~`

`sudo apt-get install build-essential git dkms linux-headers-$(uname -r)`
`sudo apt-get install build-essential git dkms`

`git clone -b ARM-driver https://github.com/corneal64/Realtek-USB-Wireless-Adapter-Drivers.git`
`git clone -b ARM-driver https://github.com/Muhammad-Yunus/Realtek-USB-Wireless-Adapter-Drivers.git`

`cd Realtek-USB-Wireless-Adapter-Drivers`

Expand Down
8 changes: 7 additions & 1 deletion rtl8188fu/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,13 @@ EXTRA_CFLAGS += -DDM_ODM_SUPPORT_TYPE=0x04
ifeq ($(CONFIG_PLATFORM_I386_PC), y)
EXTRA_CFLAGS += -DCONFIG_LITTLE_ENDIAN
EXTRA_CFLAGS += -DCONFIG_IOCTL_CFG80211 -DRTW_USE_CFG80211_STA_EVENT
SUBARCH := $(shell uname -m | sed -e s/i.86/i386/ | sed -e s/armv6l/arm/)
SUBARCH := $(shell uname -m | sed -e s/i.86/x86/ -e s/x86_64/x86/ \
-e s/sun4u/sparc64/ \
-e s/arm.*/arm/ -e s/sa110/arm/ \
-e s/s390x/s390/ -e s/parisc64/parisc/ \
-e s/ppc.*/powerpc/ -e s/mips.*/mips/ \
-e s/sh[234].*/sh/ -e s/aarch64.*/arm64/ )

ARCH ?= $(SUBARCH)
CROSS_COMPILE ?=
KVER := $(shell uname -r)
Expand Down
Loading