From 8376ac74390af0ad736c88615e128b82a75eebc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= Date: Fri, 19 Feb 2021 10:54:23 +0100 Subject: [PATCH] rpi-eeprom-update: chmod silent (-f) is not supported MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Álvaro Fernández Rojas --- rpi-eeprom-update | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/rpi-eeprom-update +++ b/rpi-eeprom-update @@ -223,7 +223,7 @@ applyRecoveryUpdate() || die "Failed to copy ${TMP_EEPROM_IMAGE} to ${BOOTFS}" # For NFS mounts ensure that the files are readable to the TFTP user - chmod -f go+r "${BOOTFS}/pieeprom.upd" "${BOOTFS}/pieeprom.sig" \ + chmod go+r "${BOOTFS}/pieeprom.upd" "${BOOTFS}/pieeprom.sig" \ || die "Failed to set permissions on eeprom update files" fi @@ -235,7 +235,7 @@ applyRecoveryUpdate() || die "Failed to copy ${VL805_UPDATE_IMAGE} to ${BOOTFS}/vl805.bin" # For NFS mounts ensure that the files are readable to the TFTP user - chmod -f go+r "${BOOTFS}/vl805.bin" "${BOOTFS}/vl805.sig" \ + chmod go+r "${BOOTFS}/vl805.bin" "${BOOTFS}/vl805.sig" \ || die "Failed to set permissions on eeprom update files" fi