Skip to content

Commit

Permalink
v138
Browse files Browse the repository at this point in the history
+ FBturbo for C2
  • Loading branch information
Fourdee committed Nov 30, 2016
1 parent 25f5db2 commit 00eed7b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.txt
Expand Up @@ -12,6 +12,7 @@ DietPi-Software | Cava: Console-based audio visualizer for MPD is now available
DietPi-JustBoom | Cava options (once installed): Can now be configured from the menu. MPD audio buffer size can now be changed.
DietPi-Autostart | Cava option added.
DietPi-LetsEncrypt | Hardened webserver SSL security (Lighttpd) as per Hyneks article recommendations: https://hynek.me/articles/hardening-your-web-servers-ssl-ciphers/ . Many thanks to WaLLy3K for the info!
General | Odroid C2: Improved desktop performance by using FBturbo instead of Mali DDX, many thanks to Meveric for this: http://forum.odroid.com/viewtopic.php?f=138&t=19948&p=169808#p169808
General | Dmesg onscreen print level has been reduced. Mostly for Odroid C2 where HiFi Shield prints i2c info when starting/stopping stream on tty1.

Bug fixes:
Expand Down
12 changes: 11 additions & 1 deletion dietpi/dietpi-software
Expand Up @@ -4963,8 +4963,18 @@ _EOF_
elif (( $HW_MODEL == 12 )); then

AGI aml-libs-odroid mali450-odroid xf86-video-mali-odroid libump-odroid --no-install-recommends
#cp /DietPi/dietpi/conf/xorg_c2.conf /etc/X11/xorg.conf

cp /DietPi/dietpi/conf/xorg_c2.conf /etc/X11/xorg.conf
# FBTURBO C2, provides much better desktop performance over Mali DDX: http://forum.odroid.com/viewtopic.php?f=138&t=19948&p=169808#p169808
AGI xf86-video-fbturbo-odroid
cat << _EOF_ > /etc/X11/xorg.conf
Section "Device"
Identifier "FBTurbo"
Driver "fbturbo"
Option "fbdev" "/dev/fb0"
Option "SwapbuffersWait" "true"
EndSection
_EOF_

#Odroid XU4
elif (( $HW_MODEL == 11 )); then
Expand Down
3 changes: 3 additions & 0 deletions dietpi/patch_file
Expand Up @@ -1926,6 +1926,9 @@ _EOF_

fi
#-------------------------------------------------------------------------------
#FBTURBO C2, provides much better desktop performance over Mali DDX: http://forum.odroid.com/viewtopic.php?f=138&t=19948&p=169808#p169808
/DietPi/dietpi/dietpi-software reinstall 6
#-------------------------------------------------------------------------------


fi
Expand Down

0 comments on commit 00eed7b

Please sign in to comment.