Quote (Juanito @ Sep. 24 2007,09:56) |
Depending on what you're trying to compile, you will usually find that something is missing and usually you can find it for dsl-n on the knoppix 4.0.2 cd/iso. I got the same crt1.o error and found the missing file in the knoppix iso. Note also that in 2.6.x the compile steps are not quite the same as in 2.4.x (which is detailed in several threads in the dsl section) - this thread and this other thread might be useful. Ref: "other thread" note that the use of linux-kernel-headers_2.5.999 is not correct (but nevertheless works in some circumstances), better to use linux-2.6.12.tar.gz from kernel.org |
Code Sample |
insmod /home/dsl/sisusbvga/sisusb.ko |
Code Sample |
# cat /etc/X11/XF86Config-4 Section "ServerLayout" Identifier "VESA device" Screen 0 "Screen0" LeftOf "Screen1" Screen 1 "Screen1" 0 0 # InputDevice "Mouse" "CorePointer" InputDevice "touchscreen" "CorePointer" InputDevice "Keyboard0" "CoreKeyboard" Option "Xinerama" "on" Option "Clone" "off" EndSection Section "Module" Load "dbe" Load "extmod" # Load "fbdevhw" Load "dri" Load "glx" Load "record" Load "freetype" Load "type1" Load "sisusb" EndSection |
Code Sample |
Section "Device" Identifier "videocard1" Driver "sisusb" VendorName "SiS" BoardName "SiS" Option "HWCursor" "True" Option "SWCursor" "True" Option "CRT1Gamma" "True" EndSection Section "Monitor" Identifier "Monitor1" VendorName "freganca1" ModelName "mastigranca1" EndSection Section "Screen" Identifier "Screen1" Device "videocard1" Monitor "Monitor1" DefaultDepth 24 SubSection "Display" Viewport 0 0 Depth 16 Modes "1024x768" "800x600" "640x480" EndSubSection SubSection "Display" Viewport 0 0 Depth 24 Modes "1024x768" "800x600" "640x480" EndSubSection EndSection Section "DRI" Mode 0666 EndSection |
Quote (curaga @ Sep. 28 2007,10:56) |
Is this the same X config you use in Fedora? |