bundles/raspberrypi: fix config.txt for lcd display

This commit is contained in:
Franzi 2024-07-31 15:30:48 +02:00
parent de6073bdcf
commit fa47322bb0
Signed by: kunsi
GPG key ID: 12E3D2136B818350
2 changed files with 33 additions and 9 deletions

View file

@ -1,23 +1,30 @@
disable_overscan=1
hdmi_force_hotplug=1
dtparam=spi=on
dtparam=audio=on
dtoverlay=vc4-fkms-v3d
dtoverlay=vc4-kms-v3d
max_framebuffers=2
hdmi_drive=2
force_turbo=1
gpu_mem=${node.metadata['raspberrypi'].get('gpu_mem', 128)}
gpu_mem=${node.metadata.get('raspberrypi/gpu_mem', 128)}
% if node.metadata.get('raspberrypi/enable_display'):
display_auto_detect=1
% else:
dtparam=i2c_arm=on
dtparam=i2s=on
dtparam=spi=on
hdmi_drive=2
hdmi_force_hotplug=1
% endif
% if node.os == 'debian':
arm_64bit=1
% endif
arm_boost=1
% for item in sorted(node.metadata['raspberrypi'].get('config.txt', set())):
% for item in sorted(node.metadata.get('raspberrypi/config.txt', set())):
${item}
% endfor
% if node.metadata['raspberrypi'].get('camera', False):
start_x=1
% if node.metadata.get('raspberrypi/enable_camera', False):
camera_auto_detect=1
% endif