Solution to Card reader issue:
Install kernel headers
# sudo yum install kernel-netbook-devel
Download driver keucr, unzip and cd to folder
https://bugs.launchpad.net/ubuntu/+s...iles/keucr.tgz
Compile & install (change your kernel version)
make -C /usr/src/kernels/2.6.33.5-28.1-netbook/ M=`pwd` modules
make -C /usr/src/kernels/2.6.33.5-28.1-netbook/ M=`pwd` modules_install
depmod -a
Quote:
If you have compilation error : "implicit declaration of usb_alloc_coherent" on line 293 in usb.c
You can try to add this after the all the includes of usb.c (line 19) :
#define usb_alloc_coherent(a, b, c, d) usb_buffer_alloc(a, b, c, d)
#define usb_free_coherent(a, b, c, d) usb_buffer_free(a, b, c, d)
It worked like a charm for me. Did not even required to reboot, it worked immediately.
|
Source:
https://bugs.launchpad.net/ubuntu/+s...x?comments=all (comments #149 and #158)
Works for me with kernel 2.6.33.5-28.1-netbook and meego 1.0.x
Kind regards