Advertisement
Guest User

config.cfg

a guest
Mar 2nd, 2017
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.19 KB | None | 0 0
  1. ## RASPBERRY PI CONFIGURATION - CONFIG.TXT
  2. ############################################
  3.  
  4.  
  5. ## CONTACT
  6. ############
  7.  
  8. # AUTHOR: Hayden Pearce
  9. # EMAIL: saint.lascivious@gmail.com
  10. # GPG: 6F0EE999A81943A9
  11. # IRC (Freenode): [Saint]
  12.  
  13.  
  14. ## DATE
  15. #########
  16.  
  17. # Tuesday - February 28th - 2017 (NZDT)
  18.  
  19.  
  20. ## MEMORY
  21. ###########
  22.  
  23. # INFO - In order to use Continuous Memory Allocation if you are not using the
  24. # cmdline_custom.txt file provided by this repository you need to add
  25. # the following string to your cmdline.txt file:
  26. # coherent_pool=6M
  27.  
  28. # NOTE - The cmdline_custom.txt file will only be used if you are using this
  29. # config.txt file or have the following string in your config.txt file:
  30. # cmdline=cmdline_custom.txt
  31.  
  32. # INFO - The gpu_mem value used here is very aggressive. With Continuious
  33. # Memory Allocation enabled the ARM/GPU memory split is dynamic and
  34. # these values only represent the maximum possible GPU memory
  35. # allocation. If you are not using Continuous Memory Allocation try
  36. # using a lower value such as:
  37. # gpu_mem_256=64
  38. # gpu_mem_512=128
  39. # gpu_mem_1024=256
  40.  
  41. cma_lwm=16
  42. cma_hwm=32
  43. cma_offline_start=16
  44. gpu_mem_256=128
  45. gpu_mem_512=256
  46. gpu_mem_1024=384
  47.  
  48.  
  49. ## CAMERA
  50. ###########
  51.  
  52.  
  53. ## ONBOARD ANALOGUE AUDIO (3.5MM JACK)
  54. ########################################
  55.  
  56. disable_audio_dither=1
  57.  
  58.  
  59. ## VIDEO
  60. ##########
  61.  
  62. sdtv_mode=2
  63.  
  64.  
  65. ## HDMI MODE OPTIONS
  66. ######################
  67.  
  68. # INFO - The hdmi_ignore_cec_init value is set to 1 to avoid sending an
  69. # active source message during boot.
  70.  
  71. # NOTE - The hdmi_ignore_cec_init value is disabled by default here as the
  72. # above may be undesirable behavior and/or interfere with the displays
  73. # ability to detect a CEC compliant device is connected.
  74.  
  75. config_hdmi_boost=4
  76. #hdmi_ignore_cec_init=1
  77.  
  78.  
  79. ## GENERIC DISPLAY OPTIONS
  80. ########################
  81.  
  82. # INFO - A 1080p display is assumed here, adjust to suit as required.
  83.  
  84. framebuffer_width=1920
  85. framebuffer_height=1080
  86. overscan_bottom=
  87. overscan_left=
  88. overscan_right=
  89. overscan_top=
  90.  
  91.  
  92. ## LICENSE KEYS - CODECS
  93. ##########################
  94.  
  95. decode_MPG2=
  96. decode_WVC1=
  97.  
  98.  
  99. ## BOOT
  100. #########
  101.  
  102. # INFO - The boot_delay value is set because some SD cards need time to
  103. # "warm up" before use, this can be especially useful if you have
  104. # overclocked the sdhost and may help to mitigate filesystem
  105. # corruption.
  106.  
  107. # INFO - The disable_splash=1 value is set because quite frankly it is
  108. # annoying and ugly.
  109.  
  110. boot_delay=2
  111. cmdline=cmdline_custom.txt
  112. disable_splash=1
  113.  
  114.  
  115. ## OVERCLOCKING
  116. #################
  117.  
  118. # INFO - The arm_freq and sdram_freq values used here are very aggressive.
  119. # Not all Raspberry Pi 3 Model B boards will be able to clock this high.
  120. # If you have problems with instability, comment out these strings or
  121. # try using a lower value such as:
  122. # arm_freq=1300
  123. # sdram_freq=500
  124.  
  125. arm_freq=1400
  126. arm_freq_min=200
  127. gpu_freq=500
  128. gpu_freq_min=100
  129. initial_turbo=60
  130. over_voltage=6
  131. over_voltage_min=-2
  132. over_voltage_sdram_p=6
  133. over_voltage_sdram_p_min=-2
  134. over_voltage_sdram_i=4
  135. over_voltage_sdram_i_min=-2
  136. over_voltage_sdram_c=4
  137. over_voltage_sdram_c_min=-2
  138. sdram_freq=600
  139. sdram_freq_min=200
  140. sdram_schmoo=0x02000020
  141.  
  142.  
  143. ## DEVICE TREE
  144. ################
  145.  
  146. # INFO - The following dtoverlay values are commented out by default in this
  147. # config.txt but one or both may be uncommented in order to disable
  148. # the embedded Bluetooth and WiFi.
  149.  
  150. # NOTE - This only affects the embedded Bluetooth and WiFi. Bluetooth an WiFi
  151. # provided by external hardware will not be affected by these values.
  152.  
  153. # INFO - The sd_overclock value used here is very aggressive. You will need a
  154. # UHS-II compliant SD card in order to use this value. If you experience
  155. # filesystem corruption comment out the dtparam=sd_overclock string or
  156. # try using a lower value such as:
  157. # dtparam=sd_overclock=63
  158. # dtparam=sd_overclock=84
  159.  
  160. #dtoverlay=pi3-disable-bt
  161. #dtoverlay=pi3-disable-wifi
  162. dtparam=audio=on
  163. dtparam=sd_overclock=100
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement