From 773d24900d1943d93b97693aacf3e99dae6ddb97 Mon Sep 17 00:00:00 2001 From: Cyril Brulebois Date: Wed, 8 Dec 2021 21:59:12 +0100 Subject: [PATCH] Fix buster builds. Regression introduced in f89f71560d2ca1bd60d97dbb26b89782657d56ae: the sed call modifies /etc/default/raspi-firmware, which used to be /etc/default/raspi3-firmware; while not ideal, working on /etc/default/raspi*-firmware shouldn't interfere on unrelated files. --- raspi_master.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/raspi_master.yaml b/raspi_master.yaml index ce9f1aa..cc7e708 100644 --- a/raspi_master.yaml +++ b/raspi_master.yaml @@ -145,7 +145,7 @@ steps: shell: | sed -i 's/root=/console=__SERIAL_CONSOLE__ root=/' /boot/firmware/cmdline.txt sed -i 's#root=/dev/mmcblk0p2#root=LABEL=RASPIROOT#' /boot/firmware/cmdline.txt - sed -i 's/^#ROOTPART=.*/ROOTPART=LABEL=RASPIROOT/' /etc/default/raspi-firmware + sed -i 's/^#ROOTPART=.*/ROOTPART=LABEL=RASPIROOT/' /etc/default/raspi*-firmware __EXTRA_CHROOT_SHELL_CMDS__