Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. # Get more options/information on http://elinux.org/RPiconfig
  2. # or on https://www.raspberrypi.org/documentation/configuration/config-txt.md
  3. #
  4. # !!!!! This file will get overwritten by updates. Please use !!!!!
  5. # !!!!! extraconfig.txt if you want to set additional !!!!!
  6. # !!!!! configuration options or add dt overlays. !!!!!
  7.  
  8. # Our kernels are located on a Linux partition. Chainload U-Boot to load them.
  9. kernel=u-boot.bin
  10.  
  11. # Use 32 MB for GPU for all RPis (Min 16 - Max 192 MB)
  12. # We don't need that much memory reserved for it, because we drive most hardware
  13. # from Linux, not the VPU OS
  14. gpu_mem=32
  15.  
  16. # Turbo mode: 0 = enable dynamic freq/voltage - 1 = always max
  17. force_turbo=0
  18. # Start in turbo mode for 30 seconds or until cpufreq sets a frequency
  19. initial_turbo=30
  20.  
  21. # DO NOT overvoltage manually to not void warranty!
  22. over_voltage=0
  23.  
  24. # Fix mini UART input frequency, and setup/enable up the UART.
  25. enable_uart=1
  26.  
  27. # Disable warning overlays as they don't work well together with linux's graphical output
  28. avoid_warnings=1
  29.  
  30. # This overlay fixes divergences between the RPi device tree and what
  31. # upstream provides
  32. dtoverlay=upstream
  33. dtoverlay=upstream-aux-interrupt
  34.  
  35. [pi1]
  36.  
  37. # Max ARM freq (default 700 MHz)
  38. arm_freq=840
  39.  
  40. # Max core (GPU) freq (default 250 MHz)
  41. core_freq=375
  42.  
  43. # SDRAM freq (default 400)
  44. sdram_freq=400
  45.  
  46. [pi3]
  47.  
  48. [pi4]
  49. arm_64bit=1
  50.  
  51. [all]
  52.  
  53. # Allow u-boot to set arm_control
  54. include ubootconfig.txt
  55.  
  56. # Allow user overrides of config options
  57. include extraconfig.txt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement