Skip to content

Commit

Permalink
rpi-config: Relocated "start_x=1" in config.txt
Browse files Browse the repository at this point in the history
It seems like "start_x=1" needs to be earlier in the file to work properly on the Rapberry Pi 4 B.

Fixes: #670
Signed-off-by: SCVready <alejandro.solozabal@outlook.com>
  • Loading branch information
SCVready committed Jan 2, 2021
1 parent a7cc636 commit c58cc8b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions recipes-bsp/bootfiles/rpi-config_git.bb
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,11 @@ do_deploy() {

# Video camera support
if [ "${VIDEO_CAMERA}" = "1" ]; then
echo "# Enable video camera" >>${DEPLOYDIR}/${BOOTFILES_DIR_NAME}/config.txt
echo "start_x=1" >>${DEPLOYDIR}/${BOOTFILES_DIR_NAME}/config.txt
# TODO: It has been observed that Raspberry Pi 4B 4GB may fail to enable the camera if "start_x=1" is at the end of the
# file. The underlying cause is unknown, but it can be related with a file size limitation affecting this variable.
# Therefore, "start_x=1" has been set to replace the original occurrence in config.txt, which is at the middle of
# the file.
sed -i '/#start_x=/ c\start_x=1' ${DEPLOYDIR}/bcm2835-bootfiles/config.txt
fi

# Offline compositing support
Expand Down

0 comments on commit c58cc8b

Please sign in to comment.