Browse Source

add xorg,xorg_lima

cuu 5 years ago
parent
commit
66f61e3465
3 changed files with 23 additions and 2 deletions
  1. 9 2
      .cpirc
  2. 7 0
      .xorg.conf
  3. 7 0
      .xorg_lima.conf

+ 9 - 2
.cpirc

@@ -1,12 +1,19 @@
 SCREEN=`cat /sys/class/graphics/fb0/modes`
+
+XORG_CONF="/home/cpi/launcher/.xorg.conf"
+if [ -f ~/.lima ]
+then
+XORG_CONF="/home/cpi/launcher/.xorg_lima.conf"
+fi
+
 if [ -f /tmp/autologin ]
 then
    rm -f /tmp/autologin
    mpd ~/.mpd.conf
       if [[ $SCREEN =~ .*320.* ]]
       then
-         startx /home/cpi/launcher/.xinitrc -- -nocursor > /tmp/x.log 2>&1
+         startx /home/cpi/launcher/.xinitrc -- -xf86config $XORG_CONF -nocursor > /tmp/x.log 2>&1
       else
-         startx /home/cpi/launcher/.xinitrc hdmi > /tmp/x.log 2>&1
+         startx /home/cpi/launcher/.xinitrc hdmi -- -xf86config $XORG_CONF > /tmp/x.log 2>&1
       fi
 fi

+ 7 - 0
.xorg.conf

@@ -0,0 +1,7 @@
+Section "Device"
+        Identifier      "Allwinner A10/A13 FBDEV"
+        Driver          "fbturbo"
+        Option          "fbdev" "/dev/fb0"
+
+        Option          "SwapbuffersWait" "true"
+EndSection

+ 7 - 0
.xorg_lima.conf

@@ -0,0 +1,7 @@
+Section "Device"
+        Identifier      "Allwinner A10/A13 FBDEV"
+        Driver          "modesetting"
+        Option          "fbdev" "/dev/fb0"
+
+        Option          "SwapbuffersWait" "true"
+EndSection