Sadly, this device using VIA Unichrome 9 that has no 3D accelerator hardware that can be configured to support 3D Desktop Compiz Fusion on my KLIXs linux distro.
All hardware and peripheral was easy to recognized except for this 3 devices :
1. USB 2.0 Webcam : Genesys Logic Webcam
2. USB2WLAN winbond : Winbond w35und
3. Touchscreen : eGalax touchkit
From lsusb -v I’ve got this list for Winbond :
winbond usb2wlan
idvendor 0x18e8
idproduct 0x6206
iserial 101d350112
Search the net for the webcam results nothing, and for usb2wlan winbond I’ve got some information from Slackware community forum, and for Touchkit I’ve jump to this link. Eventhough my company had a good relation with Amtek, but the linux support for them was undoubtly sucks. Email their support via Mr. Crano was confused me, asking for touchkit driver eGalax, they give me a digitizer driver, and asking for winbond usb2wlan driver, they give me Ralink RT73 serial monkey drivers. I just wonder if they knew linux anyway, but let’s forget that, I go on my way without their support.
The usb2wlan driver installation was pretty easy, & because I’m using my own vanila kernel 2.6.23-jf9 so it would certainly need some modification on the installation script.
Download the driver from here : Conitech
Ekstract them to /usr/src under folder hal_142_o
Edit the wusb.c using vim and find this code :
#else
static struct usb_driver wb35_driver = {
.owner = THIS_MODULE,
.name = “w35und”,
.probe = wb35_probe,
.disconnect = wb35_disconnect,
.id_table = Id_Table,
};
#endif
else
static struct usb_driver wb35_driver = {
//.owner = THIS_MODULE,
.name = “w35und”,
.probe = wb35_probe,
.disconnect = wb35_disconnect,
.id_table = Id_Table,
};
#endif
then invoke depmod to load the module into kernel :
cp w35und.ko /lib/modules/`uname -r`/kernel/drivers/net/wireless
depmod -ae
modprobe w35und.ko
iwpriv wlan0 set_region EastAsia
iwconfig wlan0 mode Managed
iwconfig wlan0 rate 54M
iwconfig wlan0 channel 1
iwconfig wlan0 essid JFDesignWLAN
iwlist wlan0 scan
Connected successfully to my AP without any difficulties.
The real problem is on touchkit eGalax, still cannot firing it up till now.