Advertisement
doveman71

Untitled

May 5th, 2015
322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.83 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=384
  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. over_voltage_sdram=4
  58.  
  59. # set to 'force_turbo=1' to disable dynamic overclocking (you can lose your warranty!)
  60. force_turbo=0
  61.  
  62. # If you have any data corruption using Turbo Mode and overclocking
  63. # try with this setting uncommented
  64. # If this still fails, try to use Medium mode without "over_voltage=2"
  65. # If it ultimately keeps failing, forget about this until it gets fixed
  66. # Use a more conservative mode that will works fine in any cases:
  67. # initial_turbo=30
  68.  
  69. ################################################################################
  70. # Overscan settings
  71. ################################################################################
  72.  
  73. # Make display smaller to stop text spilling off the screen
  74. # see also http://www.raspberrypi.org/phpBB3/viewtopic.php?f=67&t=15700
  75. # overscan_scale=1
  76. disable_overscan=0
  77.  
  78. # Adapt overscan values to your needs
  79. # overscan_left=57
  80. # overscan_right=59
  81. # overscan_top=20
  82. # overscan_bottom=20
  83.  
  84. ################################################################################
  85. # various settings see also: http://elinux.org/RPi_config.txt
  86. ################################################################################
  87.  
  88. # Force HDMI even if unplugged or powered off
  89. #hdmi_force_hotplug=1
  90. #hdmi_edid_file=1
  91.  
  92. # Doesn't sent initial active source message.
  93. # Avoids bringing CEC (enabled TV) out of standby and channel switch when
  94. # rebooting.
  95. # hdmi_ignore_cec_init=1
  96.  
  97. ################################################################################
  98. # License keys to enable GPU hardware decoding for various codecs
  99. # to obtain keys visit the shop at http://www.raspberrypi.com
  100. ################################################################################
  101.  
  102. decode_MPG2=0x7f079f89
  103. decode_WVC1=0xc54ac2ed
  104. # decode_DTS=0x00000000
  105. # decode_DDP=0x00000000
  106.  
  107. ################################################################################
  108. # End of default configuration
  109. # all values below this line were inserted from config.txt.bk (your old config)
  110. # and can be merged with the above values
  111. ################################################################################
  112. # hdmi_drive=2
  113. # hdmi_pixel_encoding=0
  114. # config_hdmi_boost=0
  115. sdtv_mode=2
  116. sdtv_aspect=3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement