No all is good now, I had to load additional modules.
As a reference, maybe also for future TCL users and in particular for me, here is what I did:
Install stable release for ARMv6 (
http://tinycorelinux.net/11.x/armv6/releases/RPi/)
Then I installed the following packages
(http://distro.ibiblio.org/tinycorelinux/11.x/armv6/tcz/):
firmware-rpi-wifi
libnl
libudev
libusb
usb-ids
wifi
wireless-4.19.81-piCore
wireless_tools
wpa_supplicant
Created a shell script:
#!/bin/sh
tce-load -i firmware-rpi-wifi
tce-load -i libnl
tce-load -i libudev
tce-load -i libusb
tce-load -i usb-ids
tce-load -i wifi
tce-load -i wireless-4.19.81-piCore
tce-load -i wireless_tools
tce-load -i wpa_supplicant
Next I verified my device with
lsusb
and
dmesg | tail -20
as well as
lsmod
Enabling my wireless interface via
sudo ifconfig wlan0 up
(The interface can be found with `iwlist`)
Next, use
iwlist wlan0 scan
to scan for wireless networks.
Use
wpa_passphrase
to generate with ESSID and Passphrase a configuration, make sure you follow precisely the output provided by
iwlist
for the fields
key_mgmt
and
pairwise
and
group
Check if access point (AP) uses WPA1 or WPA2, uncomment the field proto maybe. (My AP said WPA2 but it really seems to be WPA1... then you get a Skip RSN/WPA proto mismatch error during running
wpa_supplicant
in debug mode. Store in some location, I stored my config in
/home/tc as
wpa_supplicant.conf.
Next execute
wpa_supplicant -i wlan0 -D wext -c /home/tc/config -d &
to authenticate with AP.
Check with
iwconfig
if authenticated with AP, then use
udhcpc -i wlan0
to aquire an IP address. (Make sure that your AP has your device added. I use a Macfilter in my AP to allow only certain devices).
The last step in this tutorial is to add it to the boot configuration, which I right now do not know how to do, so I created a small script
wlan.sh
#!/bin/sh
sudo wpa_supplicant -i wlan0 -D wext -c /home/tc/config -d &
sudo udhcpc -i wlan0
Which I execute in my
.ashrc configuration file.
Hit
backup
then
reboot
Wireless LAN should be made available automatically now.
Best wishes,
Stephan