Hello folks,
I don’t know who is involed to or even responsible for the ARM EABI ubuntu distribution. (But, guess Robert Nelson is the closest one.)
With current rootfs image, the USB WLAN support is not mandatory and using USB to Ethernet is strongly encouraged. However, the U2E is not much popular in these days (at least here in Korea) and lots of USB WLAN devices are easily available. So, I believe helping people use WLAN easier would be quite useful.
What I figured out is that the device drivers are alread in the rootfs and the kernel recognizes those devices attached. There are three works need to be done
-
WLAN device firmware
There are firmware binaries in the ‘/lib/firmware’ directory in the desktop ubuntu distribution(I am using 8.10 now.). Same directory is in our beagle board ubuntu (I use lxde desktop version) rootfs image but empty. What I did was copying all the files and subdirectories in my desktop PC to my beagle board and boom, it works perfect. -
Installing wireless-tools package
To configure the WLAN devices, we need iwconfig and it is in the package. -
Configuring the WLAN device (Here, I assume no encryption for the wireless LAN AP and dhcp server running on the network)
a. ‘iwconfig’ at the prompt to figure out which device is present
Ex) I can see ‘wlan0’ appear on the screen
b. Configure the device with the following commands
sudo iwconfig YOUR_DEVICE(wlan0 for me) essid “MY_AP_ESSID”
sudo dhclient YOUR_DEVICE(wlan0 for me, again)
If it is not possible or practical to do the number 1 and 2 with respect to the distribution, we probably can update the wiki page.
What do you think?
ILKYOUNG