diff options
author | Francis Rowe <info@gluglug.org.uk> | 2014-11-28 05:43:44 +0000 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2014-11-28 05:43:44 +0000 |
commit | f77eb8b5cc09beb7c89ca70241fe7be3bcdd8fe3 (patch) | |
tree | fc36fcab502bf969a7f996a0edaed92c63cafbbc | |
parent | d6a881f98599483595dbf6cfa8b76e094a720b92 (diff) | |
download | librebootfr-f77eb8b5cc09beb7c89ca70241fe7be3bcdd8fe3.tar.gz librebootfr-f77eb8b5cc09beb7c89ca70241fe7be3bcdd8fe3.zip |
getseabios: fix typo, path and remove obsolete comments
-rwxr-xr-x | getseabios | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -1,6 +1,6 @@ #!/bin/bash -# getgrub script: Downloads SeaBIOS and patches it. +# getseabios script: Downloads SeaBIOS and patches it. # # Copyright (C) 2014 Francis Rowe <info@gluglug.org.uk> # @@ -20,8 +20,6 @@ set -u -e -v -# Get GRUB, revert to commit last used and apply patches. - # Remove the old version that may still exist # ------------------------------------------------------------------------------- @@ -35,7 +33,7 @@ rm -rf seabios # download it using git git clone git://git.seabios.org/seabios.git seabios -cd seabios +cd seabios/ # Reset to the last commit that was tested # -------------------------------------------------------------------------------- |