LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Slackware (https://www.linuxquestions.org/questions/slackware-14/)
-   -   Problem with directfb-fusion. (https://www.linuxquestions.org/questions/slackware-14/problem-with-directfb-fusion-570897/)

Lockywolf 07-20-2007 05:38 AM

Problem with directfb-fusion.
 
I have freshly-installed 12.0

download linux-fusion-3.2.3

make

make install

modprobe fusion

and receive an error

FATAL: Error inserting fusion (/lib/modules/2.6.21.5-smp/drivers/char/fusion/fusion.ko): Input/output error

in dmesg

fusion: unable to get major 252

mRgOBLIN 07-21-2007 07:12 PM

Probably need to create the device nodes.

Try
Code:

mkdir /dev/fusion

for node in 0 1 2 3 4 5 6 7; do
    mknod /dev/fusion/$node c 253 $node
done

Udev will likely wipe that out on reboot so you may have to add this to
/etc/udev/rules.d/50-udev.rules (I'm still getting to grips with udev so your mileage may vary here :))
Code:

KERNEL=="fusion[0-7]*", NAME="fusion/%n", GROUP="video"

Lockywolf 07-22-2007 11:26 AM

Quote:

Probably need to create the device nodes.
this is done after loading the module.

but the modules is not loading (input|output error)


:confused: :confused:


All times are GMT -5. The time now is 03:16 PM.