Well, one minor issue:
When shutting down the Zaurus via halt or reboot, I get a segmentation fault when the K96sd script is executed.
I haven't investigated further, becasue the FS is unmounted then anyway.
No idea if this is due to the new driver.
daniel
[div align=\"right\"][a href=\"index.php?act=findpost&pid=140209\"][{POST_SNAPBACK}][/a][/div]
i also have this issue, the most simple method is not to unload mmc_block
what i did to fix this is
/etc/rc.d/init.d/sd line 38:
/sbin/rmmod sharp_mmcsd_m sdcardmgr 2>/dev/null >/dev/null
i also have another problem that my sd will not mount after reboot, i have to unplug and replug the sd to mount it.
and my fix is replace /etc/rc.d/init.d/sd 's start case with:
start)
action "Start SD services:" /sbin/modprobe mmc_block
/sbin/modprobe $SDMGR_MODULE
sleep 1
rmmod sharp_mmcsd_m $SDMGR_MODULE
/sbin/modprobe $SDMGR_MODULE
touch /var/lock/subsys/sd
;;
the method seemed silly, but it WORKS~!