Giulio Benetti 769a1943cb Makefile: move 'EXTRA_CFLAGS += $(USER_EXTRA_CFLAGS)' at the end of EXTRA_FLAGS assignment
At the moment USER_EXTRA_CFLAGS can't override local Makfile EXTRA_CFLAGS
since it's assigned at the beginning of the Makefile. For example it's not
possible to undefine the hardcoded CONFIG_LITTLE_ENDIAN and this doesn't
allow to build these modules for big endian architectures. So let's move
the assignment of USER_EXTRA_CFLAGS to EXTRA_CFLAGS after the last
EXTRA_CFLAGS assignment.

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
2022-11-16 16:08:21 +01:00
2022-10-20 14:28:31 +02:00
2022-02-05 11:47:13 -06:00
2020-04-11 11:37:54 -05:00
2017-04-25 10:13:42 -05:00
2017-04-25 10:13:42 -05:00
2017-04-25 10:13:42 -05:00
2017-04-25 10:13:42 -05:00
2017-04-25 10:13:42 -05:00

rtl8723ds

Linux driver for RTL8723DS. This repo is derived from Realtek Version v5.1.1.5_20523_20161209_BTCOEX20161208-1212. It has been modified to build cleanly for kernels through v5.9.

Run the following commands in the Linux terminal.

git clone https://github.com/lwfinger/rtl8723ds.git
cd rtl8723ds
make
sudo make install
sudo modprobe -v 8723ds

b. Non Concurrent Mode

If you do not want two devices (station and an access point) separately, then follow these instructions.

Step - 1: Run the following commands in the Linux terminal.

git clone https://github.com/lwfinger/rtl8723ds.git
cd rtl8723ds
nano Makefile

Step - 2: Find the line that contains EXTRA_CFLAGS += -DCONFIG_CONCURRENT_MODE and insert a # symbol at the beginning of that line. This comments that line and disables concurrent mode.

Step - 3: Now, run the following commands in the same Linux terminal.

make
sudo make install
sudo modprobe -v 8723ds
Description
No description provided
Readme 3.1 MiB
Languages
C 99.6%
Makefile 0.4%