Advertisement
Guest User

conf

a guest
May 19th, 2020
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.67 KB | None | 0 0
  1. # SPDX-License-Identifier: GPL-2.0-or-later
  2. # Copyright (C) 2009-2014 Stephan Raue (stephan@openelec.tv)
  3. # Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
  4. ################################################################################
  5. # Bootloader configuration - config.txt
  6. ################################################################################
  7.  
  8. ################################################################################
  9. # Memory (System/GPU configuration )
  10. ################################################################################
  11.  
  12. # Default GPU memory split (do not change if you do not know what you are doing)
  13. gpu_mem=128
  14.  
  15. # Configure GPU memory based on SDRAM size - overrides above setting
  16. gpu_mem_256=112
  17. gpu_mem_512=160
  18. gpu_mem_1024=256
  19.  
  20. ################################################################################
  21. # For overclocking and various other settings, see:
  22. # https://www.raspberrypi.org/documentation/configuration/config-txt.md
  23. ################################################################################
  24. # Set 'force_turbo=1' to disable dynamic overclocking and enable overclocking always.
  25. force_turbo=0
  26.  
  27. # Make display smaller to stop text spilling off the screen
  28. #
  29. # Note that the overscan settings only affect the splash screen and not Kodi.
  30. #
  31. # If you experience overscan/underscan issues the best solution is to adjust
  32. # your TV settings ("full pixel", "1-1 pixel" etc.). Alternatively, there is a
  33. # calibration menu in the Kodi GUI.
  34. # disable_overscan=1
  35. hdmi_drive=2
  36. config_hdmi_boost=4
  37.  
  38. # Force HDMI even if unplugged or powered off
  39. hdmi_force_hotplug=1
  40. framebuffer_width=1280
  41. framebuffer_height=720
  42.  
  43. # Doesn't sent initial active source message.
  44. # Avoids bringing CEC (enabled TV) out of standby and channel switch when
  45. # rebooting.
  46. hdmi_ignore_cec_init=1
  47.  
  48. ################################################################################
  49. # License keys to enable GPU hardware decoding for various codecs
  50. # to obtain keys visit the shop at http://www.raspberrypi.com
  51. ################################################################################
  52.  
  53. # decode_MPG2=0x00000000
  54. # decode_WVC1=0x00000000
  55.  
  56. ################################################################################
  57. # End of default configuration
  58. ################################################################################
  59.  
  60. ################################################################################
  61. # Include distribution specific config file if it exists.
  62. ################################################################################
  63. [all]
  64. include distroconfig.txt
  65.  
  66. #LE: ACTIVATE ALSA:
  67. dtparam=audio=on
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement