Advertisement
Guest User

Untitled

a guest
May 19th, 2020
1,301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 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 - at least 288M is needed for some 4k HEVC files
  13. gpu_mem=480
  14.  
  15. ################################################################################
  16. # For overclocking and various other settings, see:
  17. # https://www.raspberrypi.org/documentation/configuration/config-txt.md
  18. ################################################################################
  19. # Set 'force_turbo=1' to disable dynamic overclocking and enable overclocking always.
  20. force_turbo=0
  21.  
  22. # Force HDMI even if unplugged or powered off
  23. # hdmi_force_hotplug=1
  24.  
  25. # Doesn't sent initial active source message.
  26. # Avoids bringing CEC (enabled TV) out of standby and channel switch when
  27. # rebooting.
  28. hdmi_ignore_cec_init=1
  29.  
  30. ################################################################################
  31. # End of default configuration
  32. ################################################################################
  33.  
  34.  
  35. hdmi_enable_4k=1
  36. hdmi_enable_4kp60=1
  37.  
  38.  
  39. ################################################################################
  40. # Include distribution specific config file if it exists.
  41. ################################################################################
  42. [all]
  43. include distroconfig.txt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement