Advertisement
Guest User

Untitled

a guest
Jun 2nd, 2018
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.44 KB | None | 0 0
  1. ################################################################################
  2. # This file is part of LibreELEC - http://www.libreelec.tv
  3. # Copyright (C) 2016 Team LibreELEC
  4. #
  5. # LibreELEC is free software: you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation, either version 2 of the License, or
  8. # (at your option) any later version.
  9. #
  10. # LibreELEC is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with LibreELEC. If not, see <http://www.gnu.org/licenses/>.
  17. ################################################################################
  18. # Bootloader configuration - config.txt
  19. ################################################################################
  20.  
  21. ################################################################################
  22. # Memory (System/GPU configuration )
  23. ################################################################################
  24.  
  25. # Default GPU memory split (do not change if you do not know what you are doing)
  26. gpu_mem=128
  27.  
  28. # Configure GPU memory based on SDRAM size - overrides above setting
  29. gpu_mem_256=112
  30. gpu_mem_512=160
  31. gpu_mem_1024=256
  32.  
  33. ################################################################################
  34. # For overclocking and various other settings, see:
  35. # https://www.raspberrypi.org/documentation/configuration/config-txt.md
  36. ################################################################################
  37. # Set 'force_turbo=1' to disable dynamic overclocking and enable overclocking always.
  38. force_turbo=0
  39.  
  40. # Make display smaller to stop text spilling off the screen
  41. #
  42. # Note that the overscan settings only affect the splash screen and not Kodi.
  43. #
  44. # If you experience overscan/underscan issues the best solution is to adjust
  45. # your TV settings ("full pixel", "1-1 pixel" etc.). Alternatively, there is a
  46. # calibration menu in the Kodi GUI.
  47. # disable_overscan=1
  48.  
  49. # Force HDMI even if unplugged or powered off
  50. hdmi_edid_file=1
  51. hdmi_force_hotplug=1
  52.  
  53. # Doesn't sent initial active source message.
  54. # Avoids bringing CEC (enabled TV) out of standby and channel switch when
  55. # rebooting.
  56. hdmi_ignore_cec_init=1
  57.  
  58. ################################################################################
  59. # License keys to enable GPU hardware decoding for various codecs
  60. # to obtain keys visit the shop at http://www.raspberrypi.com
  61. ################################################################################
  62.  
  63. # decode_MPG2=0x00000000
  64. # decode_WVC1=0x00000000
  65.  
  66. ################################################################################
  67. # End of default configuration
  68. ################################################################################
  69.  
  70. ################################################################################
  71. # Include distribution specific config file if it exists.
  72. ################################################################################
  73. [all]
  74. include distroconfig.txt
  75. dtoverlay=gpio-ir,rc-map-name=rc-rc6-mce
  76.  
  77. dtparam=audio=on
  78. program_usb_boot_mode=1
  79.  
  80. arm_freq=1300
  81. core_freq=500
  82. gpu_freq=500
  83. over_voltage=4
  84. force_turbo=1
  85.  
  86. sdram_freq=580
  87. over_voltage_sdram=5
  88. sdram_schmoo=0x02000020
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement