From 8af3f6fd6838e2c9385d18b84f3342829f921247 Mon Sep 17 00:00:00 2001 From: andrum99 <49293562+andrum99@users.noreply.github.com> Date: Tue, 10 Sep 2019 18:22:08 +0100 Subject: [PATCH] rpi-eeprom-update: minor fixes to usage --- rpi-eeprom-update | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/rpi-eeprom-update b/rpi-eeprom-update index 1c3dc09..539d155 100755 --- a/rpi-eeprom-update +++ b/rpi-eeprom-update @@ -193,7 +193,7 @@ checkDependencies() { fi if vcgencmd bootloader_config | grep -qi "Command not registered"; then - die "vcgencmd: bootloader_config. not supported. Please update VC firmware" + die "vcgencmd: 'bootloader_config` command not supported. Please update VC firmware" fi if ! flashrom --version > /dev/null 2>&1; then @@ -201,14 +201,14 @@ checkDependencies() { fi if [ "${USE_FLASHROM}" = 0 ]; then - [ -f "${RECOVERY_BIN}" ] || die "${RECOVERY_BIN} not found" + [ -f "${RECOVERY_BIN}" ] || die "${RECOVERY_BIN} not found." fi } usage() { cat <