I am trying to use the BerryGPS-IMUv3 (https://ozzmaker.com/berrygps-berrygps-imu-quick-start-guide/) on a RPi 4B running Ubuntu 20.04 headless. When the BerryGPS-IMU is installed, it prevents the pi from booting, presumably because it is streaming data to the pi and interrupting the boot process. The manufacturer's instructions state that the serial console needs to be disabled, but the instructions assume the user is running raspbian.
Has anyone figured out a way to disable the serial console (but keep the serial port enabled) on Ubuntu 20.04? I think I need to set the boot delay to "-2" to ignore interrupts but I'm not sure how to access that setting via ssh.
I had a similar problem, and found this solution to this (tested with a Raspberry Pi 4, Ubuntu 20.04 and an Adafruit Ultimate GPS HAT). As you stated, it is about stopping U-boot from interrupting autoboot when receiving input on the serial lines. Unfortunately, this requires recompilation of the U-boot binary. I performed this on the RPi itself, not with cross-compilation per the link.
My steps were as follows:
Install the dependencies:
apt-get install git make gcc gcc-aarch64-linux-gnu bison flex
(Note I needed to addbison
andflex
to the packages because the build failed without them, this isn't mentioned in the linked answer)Get the U-boot code base:
git clone --depth 1 git://git.denx.de/u-boot.git && cd u-boot/
Edit the rip_4_defconfig:
vi configs/rpi_4_defconfig
adding the lines:vi include/configs/rpi.h
, amending this stanza to add the "silent=1\0" lineThen
make rpi_4_defconfig && make
Relocate the binary output from make: