-
Notifications
You must be signed in to change notification settings - Fork 415
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add officially supported camera modules #1213
base: master
Are you sure you want to change the base?
Commits on Sep 14, 2023
-
Sort kernel device tree overlays alphabetically. Signed-off-by: Vivien Didelot <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 71d47ee - Browse repository at this point
Copy the full SHA 71d47eeView commit details -
rpi-base: add overlays for all supported cameras
Add the device tree overlays for the supported cameras as listed on https://www.raspberrypi.com/documentation/computers/camera_software.html#if-you-do-need-to-alter-the-configuration Signed-off-by: Vivien Didelot <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e70003c - Browse repository at this point
Copy the full SHA e70003cView commit details -
rpi-config: use echo instead of sed
The rpi-config package uses a mixture of sed -i $CONFIG and echo >> $CONFIG commands in order to customize the config.txt file. Because relying on commented out option is error prone, replace all sed -i occurrences with the echo alternative. Signed-off-by: Vivien Didelot <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 76416a7 - Browse repository at this point
Copy the full SHA 76416a7View commit details -
rpi-config: add config file template
Relying on a commented out config file fetched from a user Github repository is likely error prone and misleading. The best practice is to direct the user to the official documentation describing the complete list of supported configuration keys. Only a few keys are added to the config.txt file anyway, so start from an empty file that the user may override if necessary. Move the config.txt tweak code into do_compile for clarity and to ensure that the 80 character wide check is done once the file is modified, not in between appended modifications. Signed-off-by: Vivien Didelot <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 24984b6 - Browse repository at this point
Copy the full SHA 24984b6View commit details
Commits on Sep 21, 2023
-
rpi-config: rework camera support
Instead of using many inconsistent variable flags like VIDEO_CAMERA, RASPBERRYPI_CAMERA_V2, RASPBERRYPI_CAMERA_V3 or RASPBERRYPI_HD_CAMERA, use a single RASPBERRYPI_CAMERA variable, defaulting to "auto" for automatic camera detection, which can be set to a specific camera module name or alias as described in https://www.raspberrypi.com/documentation/computers/camera_software.html#if-you-do-need-to-alter-the-configuration For convenience, provide variables for predefined values describing the officially supported camera devices listed in the above documentation. Signed-off-by: Vivien Didelot <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 23436c4 - Browse repository at this point
Copy the full SHA 23436c4View commit details -
docs: document the RASPBERRYPI_CAMERA variable
Reword the camera module section to describe the usage of the new RASPBERRYPI_CAMERA variable. Signed-off-by: Vivien Didelot <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 2615a1e - Browse repository at this point
Copy the full SHA 2615a1eView commit details