From 6b431180b8f1b16128f28fa3d0ee4d9141d6c163 Mon Sep 17 00:00:00 2001 From: Tim Gover Date: Thu, 12 Dec 2024 12:14:44 +0000 Subject: [PATCH] rpi-eeprom-update: Update user prompt to indicate how to install update immediately Also, link to raspi-config as the mechanism for changing bootloader update policies. raspi-config already provides a UI for selecting the bootloader release streams and is the best place to provide any other configuration options. --- rpi-eeprom-update | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/rpi-eeprom-update b/rpi-eeprom-update index 49c7d08..d6dab0b 100755 --- a/rpi-eeprom-update +++ b/rpi-eeprom-update @@ -902,6 +902,11 @@ checkVersion() if [ "${ACTION_UPDATE_BOOTLOADER}" = 1 ] || [ "${ACTION_UPDATE_VL805}" = 1 ]; then echo "*** UPDATE AVAILABLE ***" + echo "" + echo "Run \"sudo rpi-eeprom-update -a\" to install this update now." + echo + echo "To configure the bootloader update policy run \"sudo ${RPI_EEPROM_UPDATE_CONFIG_TOOL}\"" + echo "" printVersions write_status_info "EXIT_UPDATE_REQUIRED" exit ${EXIT_UPDATE_REQUIRED}