Advertisement
Guest User

Untitled

a guest
Oct 5th, 2014
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.63 KB | None | 0 0
  1. ################################################################################
  2. # This file is part of OpenELEC - http://www.openelec.tv
  3. # Copyright (C) 2009-2012 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. # This Program 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, or (at your option)
  10. # any later version.
  11. #
  12. # This Program 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.tv; see the file COPYING. If not, write to
  19. # the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA.
  20. # http://www.gnu.org/copyleft/gpl.html
  21. ################################################################################
  22. # Bootloader configuration - config.txt
  23. ################################################################################
  24.  
  25. ################################################################################
  26. # Memory (System/GPU configuration )
  27. ################################################################################
  28.  
  29. # default GPU memory split (do not change if you do not know what you are doing)
  30. gpu_mem=128
  31.  
  32. # SDRAM size based GPU memory split, uncomment and setup to override 'gpu_mem'
  33. gpu_mem_256=100
  34. gpu_mem_512=128
  35.  
  36. ################################################################################
  37. # Overclocking settings
  38. # WARNING: Do not change/enable if you do not know what you are doing!
  39. # The System may become unstable or you can have data corruption or
  40. # you can loose your warranty if you set wrong settings
  41. #
  42. # please read: http://elinux.org/RPi_config.txt#Overclocking_configuration
  43. ################################################################################
  44.  
  45. # Overclock mode settings.
  46. #
  47. # default recommended values are: arm_freq | core_freq | sdram_freq | over_voltage
  48. # no overclocking : 700 | 250 | 400 | 0
  49. # mode 'Modest' : 800 | 300 | 400 | 0
  50. # mode 'Medium' : 900 | 333 | 450 | 2
  51. # mode 'High' : 950 | 450 | 450 | 6
  52. # mode 'Turbo' : 1000 | 500 | 500 | 6
  53.  
  54. arm_freq=950
  55. core_freq=450
  56. sdram_freq=450
  57. over_voltage=6
  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=1
  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.  
  91. ################################################################################
  92. # License keys to enable GPU hardware decoding for various codecs
  93. # to obtain keys visit the shop at http://www.raspberrypi.com
  94. ################################################################################
  95.  
  96. # decode_MPG2=0x00000000
  97. # decode_WVC1=0x00000000
  98. # decode_DTS=0x00000000
  99. # decode_DDP=0x00000000
  100.  
  101. ################################################################################
  102. # End of default configuration
  103. # all values below this line were inserted from config.txt.bk (your old config)
  104. # and can be merged with the above values
  105. ################################################################################
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement