Dear Community:
I am trying to give wireless connection to my Colibri T30 with the LM006-1004 module. I have Linux 2.6 installed in it, but with a modified kernel to use some Gpio. I have read that to use a usb wifi adapter with a modified kernel you must build and deploy kernel modules. So I tried it like that:
I downloaded, extracted… the Linux image.
Then I compiled my new kernel.
I deployed the kernel modules to the rootfs directory with this command:
sudo -E make INSTALL_MOD_PATH=/home/ander/Documentos/Colibri/Colibri_T30_LinuxImageV2.6/rootfs/ modules_install
I get this output:
INSTALL drivers/hid/hid-multitouch.ko
INSTALL drivers/input/touchscreen/atmel_mxt_ts.ko
INSTALL drivers/input/touchscreen/fusion_F0710A.ko
INSTALL drivers/scsi/scsi_wait_scan.ko
INSTALL drivers/usb/class/cdc-acm.ko
INSTALL drivers/usb/class/cdc-wdm.ko
INSTALL drivers/usb/serial/option.ko
INSTALL drivers/usb/serial/usb_wwan.ko
INSTALL net/mac80211/mac80211.ko
INSTALL net/wireless/cfg80211.ko
DEPMOD 3.1.10-g7753763-dirty
Warning: you may need to install module-init-tools
See http://www.codemonkey.org.uk/docs/post-halloween-2.6.txt
Then I writed that Linux image to a SD card with sudo ./update.sh
command. Everything go well.
I removed the uImage file of the SD card and copied my custom kernel.
After that I reflashed my Colibri successfully. With sudo lsusb
I can see that the wireless adapter is there:
Bus 002 Device 002: ID 0bda:8176 Realtek Semiconductor Corp. RTL8188CUS 802.11n WLAN Adapter
But when I enter connmanctl enable wifi
I get this negative response:
Error wifi: Method “SetProperty” with signature “sv” on interface “net.connman.Technology” doesn’t exist
So I don´t know what I am doing bad, maybe I haven´t understand well how to compile and deploy the kernel modules. Thanks in advance!