diff options
author | Francis Rowe <info@gluglug.org.uk> | 2014-11-28 00:41:07 (EST) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2014-11-28 00:41:07 (EST) |
commit | eccf442c7f6045d742391a07e9a527c79c880012 (patch) | |
tree | a49e957a56d080cfba4c5b9bb48d740a51aaab29 | |
parent | 870220ecc5ad88b747460b3e13051026068f71de (diff) | |
download | libreboot-eccf442c7f6045d742391a07e9a527c79c880012.zip libreboot-eccf442c7f6045d742391a07e9a527c79c880012.tar.gz libreboot-eccf442c7f6045d742391a07e9a527c79c880012.tar.bz2 |
getgrubinvaders: remove useless comments, fix typos and path
-rwxr-xr-x | getgrubinvaders | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/getgrubinvaders b/getgrubinvaders index fcaf7b9..3dab56d 100755 --- a/getgrubinvaders +++ b/getgrubinvaders @@ -1,6 +1,6 @@ #!/bin/bash -# getmt86: Downloads MemTest86+ and patches it +# getmt86: Downloads gRUB Invaders and patches it # # Copyright (C) 2014 Francis Rowe <info@gluglug.org.uk> # @@ -20,15 +20,11 @@ set -u -e -v -# Get the last version of MemTest86+ used, apply patches, build it. - -# You need the dependencies from ./builddeb to use this script. +# Get the last version of GRUB invaders used, apply patches, build it. # Remove the old version that may exist # ---------------------------------------------------------------------------------- -echo "DOWNLOADING GRUB INVADERS" - rm -rf grubinvaders # Get latest memtest86+: @@ -47,7 +43,7 @@ rm -f "invaders-1.0.0.tar.gz" mv invaders grubinvaders # there are modifications required -cd grubinvaders +cd grubinvaders/ # Apply necessary patches # --------------------------------------------------------------------------------- @@ -65,8 +61,6 @@ rm -f compile.sh.patch # we're done cd ../ -echo "FINISHED DOWNLOADING GRUB INVADERS" - # ------------------- DONE ---------------------- |