Page 1 of 1

Rotate display

Posted: Fri Jul 07, 2017 6:02 pm
by mjg.123@icloud.com
How do I rotate the display to landscape mode in Debian on the NeoPi S2?

Re: Rotate display

Posted: Tue Jul 11, 2017 2:13 am
by Maroon5
fix change x11's config ok support rotate

Re: Rotate display

Posted: Tue Jul 11, 2017 2:21 am
by Maroon5
Save this code and name it "xorg.conf" , copy to /etc/X11/


Code: Select all

# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# Copyright (C) Guangzhou FriendlyARM Computer Tech. Co., Ltd.
# (http://www.friendlyarm.com)
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, you can access it online at
# http://www.gnu.org/licenses/gpl-2.0.html.

Section "Monitor"
    Identifier          "Primary"
    VendorName          "FriendlyARM"
EndSection

Section "Device"
    Identifier          "Primary"
    Driver              "fbdev"
    Option              "fbdev" "/dev/fb0"
    Option              "Rotate" "CW"
EndSection

Section "Screen"
    Identifier          "Screen0"
    Device              "Primary"
    Monitor             "Primary"
    DefaultDepth         24
    SubSection          "Display"
        Depth            24
    EndSubSection
EndSection

Section "ServerLayout"
    Identifier          "DefaultLayout"
    Screen              "Screen0"
EndSection

Section "InputClass"
    Identifier          "touchscreen"
    MatchIsTouchscreen  "on"
    MatchDevicePath     "/dev/input/event*"
    Driver              "evdev"
    Option              "SwapAxes" "true"
    Option              "InvertX" "false"
    Option              "InvertY" "true"
EndSection