diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-06-13 15:56:13 +0100 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-06-13 15:56:13 +0100 |
commit | f2b4de9e7cd357ef87c9a2f65ecd0368f1b26e88 (patch) | |
tree | c42afb7ea1d68ed089cbbee5002d04b611797ea9 /flash | |
parent | 8bc655f014eeb24bf52ffc83e0b8ae9d987569d5 (diff) | |
download | librebootfr-f2b4de9e7cd357ef87c9a2f65ecd0368f1b26e88.tar.gz librebootfr-f2b4de9e7cd357ef87c9a2f65ecd0368f1b26e88.zip |
flashing script: improve readibility
Diffstat (limited to 'flash')
-rwxr-xr-x | flash | 13 |
1 files changed, 6 insertions, 7 deletions
@@ -54,25 +54,24 @@ if [ $# -lt 2 ]; then exit 1 fi +mode="${1}" +rompath="${2}" + # User specified an invalid mode of operation -if [ "${1}" != "update" ] && [ "${1}" != "forceupdate" ] && [ "${1}" != "i945lenovo_firstflash" ] && [ "${1}" != "i945lenovo_secondflash" ] && [ "${1}" != "i945apple_firstflash" ]; then +if [ "${mode}" != "update" ] && [ "${mode}" != "forceupdate" ] && [ "${mode}" != "i945lenovo_firstflash" ] && [ "${mode}" != "i945lenovo_secondflash" ] && [ "${mode}" != "i945apple_firstflash" ]; then printf "%s\n" "${usage}" printf "Invalid mode. Modes available: %s\n" "${availablemodes}" exit 1 else - printf "Mode selected: %s\n" "${1}" + printf "Mode selected: %s\n" "${mode}" fi # The specified file does not exist -if [ ! -f "${2}" ]; then +if [ ! -f "${rompath}" ]; then printf "File not found!\n" exit 1 fi -# For easy of readability -mode=${1} -rompath=${2} - flashrom="unknown" if [ -f "build" ]; then # git or libreboot_src |