add xorg,xorg_lima

This commit is contained in:
cuu 2019-01-04 18:47:27 +08:00
parent 3d60124d84
commit 66f61e3465
3 changed files with 23 additions and 2 deletions

11
.cpirc
View File

@ -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
.xorg.conf Normal file
View File

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

7
.xorg_lima.conf Normal file
View File

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