From 2a8ca85bb0630feea0e6bdd99a7a92f322026ee8 Mon Sep 17 00:00:00 2001 From: Seung-Woo Kim Date: Fri, 22 Mar 2024 10:51:44 +0900 Subject: [PATCH] rpi4: boot: remove deprecated camera dtoverlay The config.txt command 'camera_auto_detect=1' will select a connected camera sensor dt overlay. and 'dtoverlay=camera' is not used. Remove the deprecated camera dt overlay setting. This will removes below firmware warning during booting: Failed to load overlay 'camera' brfs: File read: /mfs/sd/overlays/camera.dtbo Change-Id: I5521343efb46b16fb73caee48e415214e64d33c0 Ref: https://www.raspberrypi.com/documentation/computers/camera_software.html Signed-off-by: Seung-Woo Kim --- rpi4/boot/config.txt | 1 - rpi4/boot/config_64bit.txt | 1 - 2 files changed, 2 deletions(-) diff --git a/rpi4/boot/config.txt b/rpi4/boot/config.txt index 515ffc8..9817aea 100644 --- a/rpi4/boot/config.txt +++ b/rpi4/boot/config.txt @@ -75,7 +75,6 @@ uart_2ndstage=1 # Enable the camera module camera_auto_detect=1 -dtoverlay=camera # Turn off the red camera LED when recording video or taking a still picture disable_camera_led=1 diff --git a/rpi4/boot/config_64bit.txt b/rpi4/boot/config_64bit.txt index 23b4cbf..285043b 100644 --- a/rpi4/boot/config_64bit.txt +++ b/rpi4/boot/config_64bit.txt @@ -83,7 +83,6 @@ dtoverlay=dwc2-tizen,dr_mode=peripheral # Enable the camera module camera_auto_detect=1 -dtoverlay=camera # Turn off the red camera LED when recording video or taking a still picture disable_camera_led=1 -- 2.7.4