summaryrefslogtreecommitdiffstats
path: root/lenovobios_secondflash
diff options
context:
space:
mode:
authorFrancis Rowe <info@gluglug.org.uk>2014-12-12 19:40:50 (EST)
committer Francis Rowe <info@gluglug.org.uk>2014-12-12 19:40:50 (EST)
commit78e345b68fea725b6375882007178239ecb038f9 (patch)
treecdad96290e994a4f200ab71d48449581fef799ce /lenovobios_secondflash
parentf291a9c0fabc15815d7e40e9a8fbcad918e28206 (diff)
downloadlibreboot-78e345b68fea725b6375882007178239ecb038f9.zip
libreboot-78e345b68fea725b6375882007178239ecb038f9.tar.gz
libreboot-78e345b68fea725b6375882007178239ecb038f9.tar.bz2
lenovobios_firstflash: Fix errors
lenovobios_secondflash: Fix errors
Diffstat (limited to 'lenovobios_secondflash')
-rwxr-xr-xlenovobios_secondflash25
1 files changed, 10 insertions, 15 deletions
diff --git a/lenovobios_secondflash b/lenovobios_secondflash
index 25d70f5..f1a9fb3 100755
--- a/lenovobios_secondflash
+++ b/lenovobios_secondflash
@@ -82,30 +82,25 @@ if [ ! -f "DEBLOB" ]
if [ $(uname -i) = "i686" ] || [ $(uname -m) = "i686" ]
then
# i686
- # needed for first flashing, otherwise machine will be bricked
- { # try
- ./bucts/i686/bucts 0
- } || { # catch
+ if [ ! -f "bucts/i686/bucts" ]; then
echo "$errOut"
exit 1
- }
+ fi
+ ./bucts/i686/bucts 0
else
# x86_64
- # needed for first flashing, otherwise machine will be bricked
- { # try
- ./bucts/x86_64/bucts 0
- } || { # catch
+ if [ ! -f "bucts/x86_64/bucts" ]; then
echo "$errOut"
exit 1
- }
+ fi
+ ./bucts/x86_64/bucts 0
+ fi
else
# this means we are working in src
- # needed for first flashing, otherwise machine will be bricked
- { # try
- ./bucts/bucts 0
- } || { # catch
+ if [ ! -f "bucts/bucts" ]; then
echo "$errOut"
exit 1
- }
+ fi
+ ./bucts/bucts 0
fi