From: The D. W. <do...@ge...> - 2001-10-26 03:22:20
|
* Adrian McMenamin (ad...@mc...) [011025 19:17]: > 2. I am now using devfs but this breaks QtE (which appears to want to use > /dev/fb0) and I can see no obvious way to alter QtE to fix it. Any thoughts > anyone? In your initrd or boot scripts, create a link from /dev/fb to /dev/fb0 Or you can have devfsd do it via the devfsd.conf file: # Plain version REGISTER ^fb/0$ CFUNCTION GLOBAL symlink $devname fb0 UNREGISTER ^fb/0$ CFUNCTION GLOBAL unlink fb0 # Fancier Version REGISTER ^fb/([0-9])$ CFUNCTION GLOBAL symlink $devname fb\1 UNREGISTER ^fb/([0-9])$ CFUNCTION GLOBAL unlink fb\1 Note: I've not actually use the above, but I *think* it should work. Test before wasting a CDR on it. Ciao! -- Famous Last Words: "Where did all the Indians come from?" -- Custer The Doctor What: Da Man http://docwhat.gerf.org/ do...@ge... KF6VNC |