config.txt 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. #
  2. # Copyright 2026 Aarav Ravindra Kharade
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. #
  16. # ArkOS Raspberry Pi 4 Model B Boot Configuration
  17. # -------------------------------------------------
  18. # Read by VideoCore VI GPU firmware (start4.elf) at power-on.
  19. # Suppress VideoCore GPU rainbow test pattern splash screen
  20. disable_splash=1
  21. # Force 64-bit ARM mode (AArch64)
  22. arm_64bit=1
  23. # Enable GICv2 interrupt controller
  24. enable_gic=1
  25. # Enable UART serial console on GPIO 14 (TXD) / GPIO 15 (RXD) at 115200 baud
  26. enable_uart=1
  27. # Kernel image & RAM disk
  28. kernel=kernel8.img
  29. initramfs initramfs.img followkernel
  30. # Device tree blob
  31. device_tree=bcm2711-rpi-4-b.dtb
  32. # Enable VC4 KMS display driver overlay for HDMI output
  33. dtoverlay=vc4-kms-v3d
  34. # HDMI Display Compatibility (HDMI 0 port next to USB-C power input)
  35. hdmi_force_hotplug=1
  36. hdmi_drive=2
  37. config_hdmi_boost=7
  38. # GPU Memory allocation
  39. gpu_mem=128
  40. max_framebuffers=2
  41. # Framebuffer console (/dev/fb0)
  42. framebuffer_width=1920
  43. framebuffer_height=1080
  44. framebuffer_depth=32
  45. framebuffer_ignore_alpha=1