Advertisement
doveman71

Untitled

Apr 29th, 2015
311
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.93 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. #(128 will make system run entirely from RAM on 512MB boards)
  32.  
  33. # SDRAM size based GPU memory split, uncomment and setup to override 'gpu_mem'
  34. gpu_mem_256=128
  35. gpu_mem_512=192
  36.  
  37. ################################################################################
  38. # Overclocking settings
  39. # WARNING: Do not change/enable if you do not know what you are doing!
  40. # The System may become unstable or you can have data corruption or
  41. # you can loose your warranty if you set wrong settings
  42. #
  43. # please read: http://elinux.org/RPi_config.txt#Overclocking_configuration
  44. ################################################################################
  45.  
  46. # Overclock mode settings.
  47. #
  48. # default recommended values are: arm_freq | core_freq | sdram_freq | over_voltage
  49. # no overclocking : 700 | 250 | 400 | 0
  50. # mode 'Modest' : 800 | 300 | 400 | 0
  51. # mode 'Medium' : 900 | 333 | 450 | 2
  52. # mode 'High' : 950 | 450 | 450 | 6
  53. # mode 'Turbo' : 1000 | 500 | 500 | 6
  54.  
  55. arm_freq=1000
  56. core_freq=450
  57. sdram_freq=450
  58. over_voltage=6
  59. over_voltage_sdram=4
  60.  
  61. # set to 'force_turbo=1' to disable dynamic overclocking (you can lose your warranty!)
  62. force_turbo=0
  63.  
  64. # If you have any data corruption using Turbo Mode and overclocking
  65. # try with this setting uncommented
  66. # If this still fails, try to use Medium mode without "over_voltage=2"
  67. # If it ultimately keeps failing, forget about this until it gets fixed
  68. # Use a more conservative mode that will works fine in any cases:
  69. # initial_turbo=30
  70.  
  71. ################################################################################
  72. # Overscan settings
  73. ################################################################################
  74.  
  75. # Make display smaller to stop text spilling off the screen
  76. # see also http://www.raspberrypi.org/phpBB3/viewtopic.php?f=67&t=15700
  77. # overscan_scale=1
  78. disable_overscan=0
  79.  
  80. # Adapt overscan values to your needs
  81. # overscan_left=57
  82. # overscan_right=59
  83. # overscan_top=20
  84. # overscan_bottom=20
  85.  
  86. ################################################################################
  87. # various settings see also: http://elinux.org/RPi_config.txt
  88. ################################################################################
  89.  
  90. rce HDMI even if unplugged or powered off^M
  91. #hdmi_ignore_edid=0xa5000080
  92. hdmi_force_hotplug=1^M
  93. hdmi_edid_file=1
  94. #hdmi_pixel_encoding=2
  95. #hdmi_group=2^M
  96. #hdmi_mode=82^M
  97. # CEA hdmi_mode=16 for 1080p@60hz, mode=4 is 720p@60hz(DMT 82 or 85)^M
  98. #sdtv_mode=0^M
  99. #sdtv_aspect=3^M
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109. ################################################################################
  110. # License keys to enable GPU hardware decoding for various codecs
  111. # to obtain keys visit the shop at http://www.raspberrypi.com
  112. ################################################################################
  113.  
  114. decode_MPG2=0x27eff776
  115. decode_WVC1=0xe28aa6a6
  116. # decode_DTS=0x00000000
  117. # decode_DDP=0x00000000
  118.  
  119. ################################################################################
  120. # End of default configuration
  121. # all values below this line were inserted from config.txt.bk (your old config)
  122. # and can be merged with the above values
  123. ################################################################################
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement