by Nico38 » Sun Feb 10, 2013 10:20 am
To install dev tools and compiler :
$this->bbcode_second_pass_code('', 'pacman -S kernel26-headers file base-devel abs')
Instructions to build driver :
$this->bbcode_second_pass_code('', 'mkdir wifi
cd wifi')
copy rtl8188C_8192C_usb_linux_v3.4.3_4369.20120622.tar.gz in current dir.
$this->bbcode_second_pass_code('', 'tar xzf rtl8188C_8192C_usb_linux_v3.4.3_4369.20120622.tar.gz
cd cd rtl8188C_8192C_usb_linux_v3.4.3_4369.20120622
nano Makefile')
Change the following line :
CONFIG_PLATFORM_I386_PC = y
with :
CONFIG_PLATFORM_I386_PC = n
Add the following line :
CONFIG_PLATFORM_ARM_BCM2708 = y
Add following lines (near ifeq ($(CONFIG_PLATFORM_I386_PC), y)) :
ifeq ($(CONFIG_PLATFORM_ARM_BCM2708), y)
EXTRA_CFLAGS += -DCONFIG_LITTLE_ENDIAN
ARCH := arm
CROSS_COMPILE :=
KVER := $(shell uname -r)
KSRC := /usr/lib/modules/$(KVER)/build
endif
To install the driver :
$this->bbcode_second_pass_code('', 'make
cp 8192cu.ko /usr/lib/modules/extramodules-<tab>
depmod -a
systemctl reboot')
Nicolas