Advertisement
Guest User

Libreelec overclock RPI4

a guest
May 19th, 2020
355
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. # SPDX-License-Identifier: GPL-2.0-or-later
  2.  
  3. # Copyright (C) 2009-2014 Stephan Raue (stephan@openelec.tv)
  4.  
  5. # Copyright (C) 2016-present Team LibreELEC (LibreELEC – Just enough OS for KODI)
  6.  
  7. ################################################################################
  8.  
  9. # Bootloader configuration - config.txt
  10.  
  11. ################################################################################
  12.  
  13.  
  14.  
  15. ################################################################################
  16.  
  17. # Memory (System/GPU configuration )
  18.  
  19. ################################################################################
  20.  
  21.  
  22.  
  23. # Default GPU memory split - at least 288M is needed for some 4k HEVC files
  24.  
  25. gpu_mem=512
  26.  
  27.  
  28.  
  29. ################################################################################
  30.  
  31. # For overclocking and various other settings, see:
  32.  
  33. # config.txt - Raspberry Pi Documentation
  34.  
  35. ################################################################################
  36.  
  37. # Set 'force_turbo=1' to disable dynamic overclocking and enable overclocking always.
  38.  
  39. force_turbo=1
  40.  
  41.  
  42.  
  43. # Force HDMI even if unplugged or powered off
  44.  
  45. # hdmi_force_hotplug=1
  46.  
  47.  
  48.  
  49. # Doesn't sent initial active source message.
  50.  
  51. # Avoids bringing CEC (enabled TV) out of standby and channel switch when
  52.  
  53. # rebooting.
  54.  
  55. hdmi_ignore_cec_init=1
  56.  
  57.  
  58.  
  59. ################################################################################
  60.  
  61. # End of default configuration
  62.  
  63. ################################################################################
  64.  
  65.  
  66.  
  67. ################################################################################
  68.  
  69. # Include distribution specific config file if it exists.
  70.  
  71. ################################################################################
  72.  
  73. [all]
  74.  
  75. include distroconfig.txt
  76.  
  77.  
  78.  
  79. # NOOBS Auto-generated Settings:
  80.  
  81. hdmi_force_hotplug=1
  82.  
  83. dtparam=audio=on
  84.  
  85.  
  86.  
  87. current_limit_override=1
  88.  
  89. over_voltage=7
  90.  
  91. arm_freq=2147
  92.  
  93. gpu_freq=750
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement