From 9f8779daafd6cb392fda9730ffaed9733dc1ba99 Mon Sep 17 00:00:00 2001 From: Seung-Woo Kim Date: Mon, 28 Oct 2019 15:14:49 +0900 Subject: [PATCH] rpi4: boot: Add to support mipi-csi camera module Add to support mipi-csi camera module with the options, start_x=1 and disable_camera_led=1, in config.txt. Change-Id: I450c291599031437a9fe58cac94a0d18c6cf58a9 Reference: https://www.raspberrypi.org/documentation/configuration/config-txt/boot.md Reference: https://www.raspberrypi.org/documentation/configuration/config-txt/camera.md Signed-off-by: Seung-Woo Kim --- rpi4/boot/config.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/rpi4/boot/config.txt b/rpi4/boot/config.txt index e829841..69ba55b 100644 --- a/rpi4/boot/config.txt +++ b/rpi4/boot/config.txt @@ -67,3 +67,9 @@ kernel=zImage # Enable serial enable_uart=1 uart_2ndstage=1 + +# Enable the camera module +start_x=1 + +# Turn off the red camera LED when recording video or taking a still picture +disable_camera_led=1 -- 2.7.4