aboutsummaryrefslogtreecommitdiff
path: root/external/boot-tests
diff options
context:
space:
mode:
authorFrederic Bonnard <frediz@linux.vnet.ibm.com>2016-06-13 11:37:09 +0200
committerStewart Smith <stewart@linux.vnet.ibm.com>2016-06-20 15:08:05 +1000
commit4c95b5e04e3c4f72e4005574f67cd6e365d3276f (patch)
tree60763919c97d73efba7a6ffbb2afa3efa05502d4 /external/boot-tests
parent3aeb50189d4d88528c627e099c76b00e28e5c432 (diff)
downloadskiboot-4c95b5e04e3c4f72e4005574f67cd6e365d3276f.zip
skiboot-4c95b5e04e3c4f72e4005574f67cd6e365d3276f.tar.gz
skiboot-4c95b5e04e3c4f72e4005574f67cd6e365d3276f.tar.bz2
Fix for typos
While reviewing the Debian packaging, codespell found those. Most proposed fixes are based on codespell's default dictionnary. Signed-off-by: Frederic Bonnard <frediz@linux.vnet.ibm.com> Reviewed-by: Mukesh Ojha <mukesh02@linux.vnet.ibm.com> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'external/boot-tests')
-rw-r--r--external/boot-tests/bmc_support.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/external/boot-tests/bmc_support.sh b/external/boot-tests/bmc_support.sh
index 0b4c675..f28c610 100644
--- a/external/boot-tests/bmc_support.sh
+++ b/external/boot-tests/bmc_support.sh
@@ -75,7 +75,7 @@ function flash {
msg "Flashing full PNOR"
$SSHCMD "$PFLASH_BINARY -E -f -p /tmp/image.pnor"
if [ "$?" -ne "0" ] ; then
- error "An unexpected pflash error has occured";
+ error "An unexpected pflash error has occurred";
fi
fi
@@ -83,7 +83,7 @@ function flash {
msg "Flashing PAYLOAD PNOR partition"
$SSHCMD "$PFLASH_BINARY -e -f -P PAYLOAD -p /tmp/skiboot.lid"
if [ "$?" -ne "0" ] ; then
- error "An unexpected pflash error has occured";
+ error "An unexpected pflash error has occurred";
fi
fi
@@ -91,7 +91,7 @@ function flash {
msg "Flashing BOOTKERNEL PNOR partition"
$SSHCMD "$PFLASH_BINARY -e -f -P BOOTKERNEL -p /tmp/bootkernel"
if [ "$?" -ne "0" ] ; then
- error "An unexpected pflash error has occured";
+ error "An unexpected pflash error has occurred";
fi
fi
}