Advertisement
Guest User

/boot/config.txt

a guest
Dec 15th, 2021
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1.  
  2. ############################################################################
  3. # Boot loader configuration #
  4. # Warning: do not edit this file as it will be overwritten when upgrading! #
  5. ############################################################################
  6.  
  7. # Using /etc/modules is deprecated and no longer supported on 4.4 kernel
  8. # So manually enable audio
  9. dtparam=audio=on
  10.  
  11. # if you plug your tv at the same time as your rpi and that the rpi switches from the hdmi or
  12. # give a low resolution because tv had no enough time to initialize it
  13. boot_delay=3
  14.  
  15. # disable boot rainbow
  16. disable_splash=1
  17.  
  18. # default CEC name
  19. cec_osd_name=recalbox
  20.  
  21. avoid_safe_mode=1
  22.  
  23. kernel=boot/linux
  24. initramfs boot/initrd.gz
  25.  
  26. # force hdmi while the tv can take time before sending the signal on the hdmi output
  27. hdmi_force_hotplug=1
  28.  
  29. # total amount of GPU memory
  30. gpu_mem_256=128
  31. gpu_mem_512=128
  32. gpu_mem_1024=448
  33.  
  34. # your settings can be set in /boot/recalbox-user-config.txt
  35. include recalbox-user-config.txt
  36.  
  37. # overclocking settings are automatically managed in this file
  38. # do not remove this line, nor edit the file
  39. include recalbox-oc-config.txt
  40.  
  41. # Raise the first security limit up to 70 instead of 60 for pi3 and pi4
  42. [pi3]
  43. temp_soft_limit=70
  44. dtoverlay=vc4-kms-v3d
  45. include recalbox-crt-config.txt
  46.  
  47. [pi4]
  48. temp_soft_limit=70
  49. dtoverlay=vc4-kms-v3d
  50. include recalbox-crt-config.txt
  51.  
  52. # disable 4k resolution
  53. hdmi_pixel_freq_limit:0=200000000
  54. hdmi_pixel_freq_limit:1=200000000
  55.  
  56. [board-type=0x12]
  57. dtoverlay=vc4-kms-v3d
  58.  
  59. # custom config
  60. [all]
  61.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement