From 5814527698662b3f34fe8ab7ca13dd290892cd82 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 20654249..aa9f761 100644 --- a/rpi4/boot/config_64bit.txt +++ b/rpi4/boot/config_64bit.txt @@ -78,7 +78,6 @@ arm_64bit=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 -- 2.7.4