Advertisement
Guest User

Untitled

a guest
Apr 28th, 2015
430
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.02 KB | None | 0 0
  1. ################################################################################
  2. # This file is part of OpenELEC - http://www.openelec.tv
  3. # Copyright (C) 2009-2014 Stephan Raue (stephan@openelec.tv)
  4. # Inspired and partly copied from:
  5. # http://youresuchageek.blogspot.fr/2012/09/howto-raspberry-pi-openelec-on.html
  6. #
  7. # OpenELEC is free software: you can redistribute it and/or modify
  8. # it under the terms of the GNU General Public License as published by
  9. # the Free Software Foundation, either version 2 of the License, or
  10. # (at your option) any later version.
  11. #
  12. # OpenELEC is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with OpenELEC. If not, see <http://www.gnu.org/licenses/>.
  19. ################################################################################
  20. # Bootloader configuration - config.txt
  21. ################################################################################
  22.  
  23. ################################################################################
  24. # Memory (System/GPU configuration )
  25. ################################################################################
  26.  
  27. # default GPU memory split (do not change if you do not know what you are doing)
  28. gpu_mem=128
  29.  
  30. # SDRAM size based GPU memory split, uncomment and setup to override 'gpu_mem'
  31. gpu_mem_256=112
  32. gpu_mem_512=160
  33. gpu_mem_1024=256
  34.  
  35. ################################################################################
  36. # Overclocking settings
  37. # WARNING: Do not change/enable if you do not know what you are doing!
  38. # The System may become unstable or you can have data corruption or
  39. # you can loose your warranty if you set wrong settings
  40. #
  41. # please read: http://elinux.org/RPi_config.txt#Overclocking_configuration
  42. ################################################################################
  43.  
  44. # Overclock mode settings.
  45. #
  46. # default recommended values are: arm_freq | core_freq | sdram_freq | over_voltage
  47. # no overclocking : 700 | 250 | 400 | 0
  48. # mode 'Modest' : 800 | 300 | 400 | 0
  49. # mode 'Medium' : 900 | 333 | 450 | 2
  50. # mode 'High' : 950 | 450 | 450 | 6
  51. # mode 'Turbo' : 1000 | 500 | 500 | 6
  52.  
  53. arm_freq=1000
  54. core_freq=500
  55. sdram_freq=500
  56. over_voltage=6
  57.  
  58. # set to 'force_turbo=1' to disable dynamic overclocking (you can lose your warranty!)
  59. force_turbo=0
  60.  
  61. # If you have any data corruption using Turbo Mode and overclocking
  62. # try with this setting uncommented
  63. # If this still fails, try to use Medium mode without "over_voltage=2"
  64. # If it ultimately keeps failing, forget about this until it gets fixed
  65. # Use a more conservative mode that will works fine in any cases:
  66. # initial_turbo=30
  67.  
  68. ################################################################################
  69. # Overscan settings
  70. ################################################################################
  71.  
  72. # Make display smaller to stop text spilling off the screen
  73. # see also http://www.raspberrypi.org/phpBB3/viewtopic.php?f=67&t=15700
  74. # overscan_scale=1
  75. # disable_overscan=1
  76.  
  77. # Adapt overscan values to your needs
  78. # overscan_left=57
  79. # overscan_right=59
  80. # overscan_top=20
  81. # overscan_bottom=20
  82.  
  83. ################################################################################
  84. # various settings see also: http://elinux.org/RPi_config.txt
  85. ################################################################################
  86.  
  87. # Force HDMI even if unplugged or powered off
  88. # hdmi_force_hotplug=1
  89. # hdmi_ignore_edid=0xa5000080
  90. # disable_overscan=1
  91. # hdmi_group=1
  92. # hdmi_mode=31
  93. # hdmi_force_edid_audio=1
  94. # hdmi_drive=2
  95.  
  96. # Doesn't sent initial active source message.
  97. # Avoids bringing CEC (enabled TV) out of standby and channel switch when
  98. # rebooting.
  99. hdmi_ignore_cec_init=1
  100.  
  101. ################################################################################
  102. # License keys to enable GPU hardware decoding for various codecs
  103. # to obtain keys visit the shop at http://www.raspberrypi.com
  104. ################################################################################
  105.  
  106. # decode_MPG2=0x00000000
  107. # decode_WVC1=0x00000000
  108. # decode_DTS=0x00000000
  109. # decode_DDP=0x00000000
  110.  
  111. ################################################################################
  112. # End of default configuration
  113. # all values below this line were inserted from config.txt.bk (your old config)
  114. # and can be merged with the above values
  115. ################################################################################
  116.  
  117. # Overlays
  118. device_tree_overlay=overlays/enable-spi-overlay.dtb
  119. device_tree_overlay=overlays/lirc-rpi-overlay.dtb
  120. device_tree_overlay=overlays/iqaudio-dac-overlay.dtb
  121.  
  122. max_usb_current=1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement