summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2015-10-30 11:01:24 (EDT)
committer P. J. McDermott <pj@pehjota.net>2015-10-30 11:01:24 (EDT)
commit20236508ef52c3b016ff0e9d50914b55c1704c6b (patch)
tree8f3f03586e4cb3fba82817825044186ed84f369d
parentcd5a652edd730ba8a52f72880f73eeee1913022e (diff)
downloadfirman.sh-20236508ef52c3b016ff0e9d50914b55c1704c6b.zip
firman.sh-20236508ef52c3b016ff0e9d50914b55c1704c6b.tar.gz
firman.sh-20236508ef52c3b016ff0e9d50914b55c1704c6b.tar.bz2
src/action/update.sh: Replace info() with dbg()
-rw-r--r--src/action/update.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/action/update.sh b/src/action/update.sh
index c443407..31e218b 100644
--- a/src/action/update.sh
+++ b/src/action/update.sh
@@ -35,7 +35,7 @@ get_dist()
fi
select_dist "${dist}"
- info 'Distributor: %s' "${dist}"
+ dbg 'Distributor: %s' "${dist}"
return 0
}
@@ -61,7 +61,7 @@ get_mirror()
i=$(($i + 1))
mirror_url="$(printf '%s ' ${mirror_urls} | cut -d ' ' -f ${i})"
- info 'Mirror: %s' "${mirror_url}"
+ dbg 'Mirror: %s' "${mirror_url}"
printf '%s' "${mirror_url}"
return 0
@@ -80,7 +80,7 @@ get_version()
i=$(($i + 1))
version="$(printf '%s ' ${versions} | cut -d ' ' -f ${i})"
- info 'Version: %s' "${version}"
+ dbg 'Version: %s' "${version}"
printf '%s' "${version}"
return 0
@@ -92,7 +92,7 @@ do_update()
local version=''
local rom=''
- info 'Updating firmware'
+ dbg 'Updating firmware'
# Probe for board and chip.
if ! flashrom_probe; then