Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 23 May 2020 15:46:11 -0700
From:      bob prohaska <fbsd@www.zefox.net>
To:        Mark Millard <marklmi@yahoo.com>
Cc:        freebsd-arm@freebsd.org
Subject:   X trouble on Rpi3, was Re: Missing /dev/io on rpi3 running 12-stable
Message-ID:  <20200523224611.GA80843@www.zefox.net>
In-Reply-To: <E1F49E99-592C-4A65-8981-5CA7BC9083CB@yahoo.com>
References:  <20200520164642.GA70838@www.zefox.net> <f5c8af7693b90f1aaa8394d7a13f8ac38ee4e6b6.camel@freebsd.org> <20200521022517.GA71947@www.zefox.net> <9E006FD6-493A-43CD-B242-47E00BBDFF6A@yahoo.com> <20200523052439.GB78879@www.zefox.net> <E1F49E99-592C-4A65-8981-5CA7BC9083CB@yahoo.com>

next in thread | previous in thread | raw e-mail | index | archive | help
On Fri, May 22, 2020 at 10:51:32PM -0700, Mark Millard wrote:
> 
> They implicitly suggest that fbbpp needs to be set to 32 (for the sparse 32 bit
> framebuffer layout). You may want to try -fbbpp 32 on the command that starts
> the server to find out if it proves dsufficient.
> 

Apparently something more clever than 
X -fbbpp 32 
or
startx -fbbpp 32 
is required. Neither seems to make a difference. 

Can the -fbbpp parameter be set in xorg.conf? Right now
it contains:
Section "Files"
EndSection 
Section "Module"
    Load        "dbe"
    Disable    "dri"
    Disable    "dri2"
    Disable    "glx"
    SubSection  "extmod"
       Option  "omit xfree86-dga"
    EndSubSection
EndSection


Section "ServerFlags"
    Option    "AIGLX"        "false"
    Option    "NoAccel"    "True"
    Option    "NoDRI"        "True"
    Option    "DRI"        "False"
    Option    "DRI2"        "False"
EndSection


Section "InputDevice"
    Identifier  "Keyboard1"
    Driver      "kbd"
EndSection


Section "InputDevice"
    Identifier  "Mouse1"
    Driver      "mouse"
    Option      "Protocol"      "auto"
    Option      "Device"        "/dev/sysmouse"
EndSection


Section "Monitor"
    Identifier  "Monitor"
EndSection


Section "Device"
    Identifier  "Generic FB"
    Driver      "scfb"
    Option    "NoAccel"    "True"
EndSection


Section "Screen"
    Identifier  "Screen"
    Device      "Generic FB"
    Monitor     "Monitor"
    DefaultDepth 16
    SubSection "Display"
       Depth           16
    EndSubsection
EndSection


Section "ServerLayout"
    Identifier  "layout"
    Screen      0 "Screen" 0 0
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"
EndSection

Thanks for reading!

bob prohaska




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20200523224611.GA80843>