aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/sign_images.sh
diff options
context:
space:
mode:
authorJosh Soref <jsoref@users.noreply.github.com>2021-09-26 17:58:59 -0400
committerAdrian Schmutzler <freifunk@adrianschmutzler.de>2021-10-31 21:24:47 +0100
commit08622de7d66eb90038de54f34ab2fe2308424fd0 (patch)
treea52891b13c49369f8a87d0a6afe302e6cee52a71 /scripts/sign_images.sh
parent76fff69180039ace23ce10a2570ec9f441a0cab6 (diff)
downloadupstream-08622de7d66eb90038de54f34ab2fe2308424fd0.tar.gz
upstream-08622de7d66eb90038de54f34ab2fe2308424fd0.tar.bz2
upstream-08622de7d66eb90038de54f34ab2fe2308424fd0.zip
scripts: fix various typos
This only affects typos in comments or user-facing output. Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> [only picks changes to scripts, drop "commandline" replacement, fix case for "arbitrary", improve commit message] Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Diffstat (limited to 'scripts/sign_images.sh')
-rwxr-xr-xscripts/sign_images.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/sign_images.sh b/scripts/sign_images.sh
index c41b21e091..f37c2f5016 100755
--- a/scripts/sign_images.sh
+++ b/scripts/sign_images.sh
@@ -3,12 +3,12 @@
# directory where search for images
TOP_DIR="${TOP_DIR:-./bin/targets}"
# key to sign images
-BUILD_KEY="${BUILD_KEY:-key-build}" # TODO unifiy naming?
+BUILD_KEY="${BUILD_KEY:-key-build}" # TODO unify naming?
# remove other signatures (added e.g. by buildbot)
REMOVE_OTER_SIGNATURES="${REMOVE_OTER_SIGNATURES:-1}"
# find all sysupgrade images in TOP_DIR
-# factory images don't need signatures as non OpenWrt system doen't check them anyway
+# factory images don't need signatures as non OpenWrt system doesn't check them anyway
for image in $(find $TOP_DIR -type f -name "*-sysupgrade.bin"); do
# check if image actually support metadata
if fwtool -i /dev/null "$image"; then