issues with t35 screen and xserver

klon1
i have running debian on a 128M mini2440
and i can run xserver and ui on the n35 and the t35 with the kernel for the
n35 but not with t35 kernel..

i get this error messege after typing startx


(EE) FBDEV(0): FBIOPUT_VSCREENINFO: Invalid argument
(EE) FBDEV(0): mode initialization failed

Fatal server error:
AddScreen/ScreenInit failed for driver 0


this ist my xorg.conf
Section "InputDevice"
  Identifier  "Generic Keyboard"
  Driver    "kbd"
  Option    "XkbRules"  "xorg"
  Option    "XkbModel"  "pc105"
  Option    "XkbLayout"  "de"
  Option    "XkbVariant"  "nodeadkeys"
EndSection

Section "InputDevice"
  Identifier  "s3c2410 TouchScreen"
  Driver    "tslib"
  Option    "ScreenNumber"  "0"
  Option    "Device"  "/dev/input/event0"
  Option    "Protocol"  "Auto"
  Option      "Rotate" "CW"
  #Option      "Width" "320"
    #Option      "Height" "360"
  Option    "ReportingMode"  "Raw"
  Option      "SendCoreEvents" "On"
  Option     "CorePointer"
  Option     "Calibrate" "0"
EndSection

Section "ServerLayout"
  Identifier      "Default Layout"
  Screen          "Default Screen"
  InputDevice     "s3c2410 TouchScreen" "CorePointer"
  Option    "Rotate" "CW"
EndSection

Section "Device"
  Identifier  "Configured Video Device"
  Option    "fb"  "/dev/fb0"
  Option    "Rotate" "CW"
EndSection

Section "Monitor"
  Identifier  "Configured Monitor"
EndSection

Section "Screen"
  Identifier  "Default Screen"
  Monitor    "Configured Monitor"
EndSection

Robbie
I got the same error..
Have you ever find it out?

cyx8648
also fighting with the error and found a sulotion on a japanisch site,
http://www.mech.tohoku-gakuin.ac.jp/rde/contents/tech/mini2440/install_s...
thx google translate :-)

you need to ad one line to the fb driver im kernel.

edit this in your kernel ../linux/drivers/video/fbmem.c

Rewriting point (fbmem.c, near line 1050)

   case FBIOPUT_VSCREENINFO:
        return 0;       #### INSERT THIS LINE ####
        if(copy_from_user(&var...))
        return -EFAULT;

recompile your kernel(uImage) and be happy.

took me half a day to fix this litte problem. :-(

greetings
rudie