1
+ # Chromium OS for Raspberry Pi
2
+ # Copyright (c) 2021 Fyde Innovations. All rights reserved.
3
+
4
+ # Use of this source code is governed by a BSD-style license
5
+ # that can be found in the LICENSE file.
6
+
7
+ # The Raspberry Pi uses a configuration file instead of the
8
+ # BIOS you would expect to find on a conventional PC. The
9
+ # system configuration parameters, which would traditionally
10
+ # be edited and stored using a BIOS, are stored instead in
11
+ # this optional text file. This is read by the GPU before the
12
+ # ARM CPU and Linux are initialised.
13
+
14
+ # For more info:
15
+ # https://www.raspberrypi.com/documentation/computers/config_txt.html
16
+
17
+
1
18
#hdmi_drive=2
2
19
#config_hdmi_boost=7
3
20
disable_overscan=1
@@ -6,11 +23,16 @@ cma_lwm=16
6
23
cma_hwm=32
7
24
gpu_mem=256
8
25
9
- # better graphic performance,but need fydeos-force-cursor-compositing in /etc/chrome_dev.conf
26
+ # Display mode
27
+ # Defaulting to "kms" mode for better graphics performance, it
28
+ # requires an optional flag "fydeos-force-cursor-compositing"
29
+ # in /etc/chrome_dev.conf.
30
+ # Should you run into display issues, such as black-screen or
31
+ # GUI graphics not being able to render properly, you can
32
+ # toggle the display mode to "fkms" to enable a compatibility
33
+ # mode, by commenting/uncommenting the corresponding lines.
10
34
dtoverlay=vc4-kms-v3d-pi4
11
-
12
- # fit for rpi3/rpi4
13
- #dtoverlay=vc4-fkms-v3d-rpi4
35
+ #dtoverlay=vc4-fkms-v3d
14
36
15
37
# for more power
16
38
#force_turbo=1
@@ -27,3 +49,14 @@ arm_64bit=1
27
49
max_framebuffers=2
28
50
kernel=kernel8_a.img
29
51
disable_splash=1
52
+
53
+ # Supported MIPI Cameras
54
+ # 1. Raspberry Pi Camera V2:
55
+ #dtoverlay=imx219
56
+ # 2. Others:
57
+ #dtoverlay=imx290
58
+ #dtoverlay=imx378
59
+ #dtoverlay=imx477
60
+ #dtoverlay=imx519
61
+ #dtoverlay=ov5647
62
+ #dtoverlay=ov9281
0 commit comments