diff options
author | Joseph Michael Thompson <jmt@josepht.me> | 2015-04-10 15:15:07 (EDT) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-04-10 16:53:18 (EDT) |
commit | 1360aae9a0caae69fe468a0832c01dfaa2563faa (patch) | |
tree | 740dace72e7b53500f60759af0f6b1388fe5e335 /resources/scripts/helpers/download/coreboot | |
parent | 57444b1c8bbe6169cd536c67591e276ad4910b71 (diff) | |
download | libreboot-1360aae9a0caae69fe468a0832c01dfaa2563faa.zip libreboot-1360aae9a0caae69fe468a0832c01dfaa2563faa.tar.gz libreboot-1360aae9a0caae69fe468a0832c01dfaa2563faa.tar.bz2 |
trim a few long lines, eliminate/add trailing newlines for consistency
Diffstat (limited to 'resources/scripts/helpers/download/coreboot')
-rwxr-xr-x | resources/scripts/helpers/download/coreboot | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/resources/scripts/helpers/download/coreboot b/resources/scripts/helpers/download/coreboot index 1b34d4b..54ada0e 100755 --- a/resources/scripts/helpers/download/coreboot +++ b/resources/scripts/helpers/download/coreboot @@ -30,12 +30,12 @@ printf "Downloading coreboot, patching coreboot and deblobbing coreboot\n" # This is also used to run the deblob scripts. # Remove the old version that may exist -# ---------------------------------------------------------------------------------- +# ------------------------------------------------------------------------------ rm -rf coreboot # Get latest coreboot: -# ---------------------------------------------------------------------------------- +# ------------------------------------------------------------------------------ # download it using git git clone http://review.coreboot.org/coreboot @@ -47,7 +47,7 @@ cd coreboot/ git reset --hard 8e3da749ed912834ddf9b78bff956a2b7d269945 # Get patches from review.coreboot.org -# ---------------------------------------------------------------------------------- +# ------------------------------------------------------------------------------ printf "Text mode patch for X60 native graphics (main patch already merged in coreboot. See 6723 on coreboot gerrit)\n" git fetch http://review.coreboot.org/coreboot refs/changes/25/6725/3 && git cherry-pick FETCH_HEAD @@ -84,7 +84,7 @@ printf "ThinkPad T500 (depends on T400 patch)\n" git fetch http://review.coreboot.org/coreboot refs/changes/81/9181/1 && git cherry-pick FETCH_HEAD # Run coreboot-libre deblob scripts -# --------------------------------------------------------------------------------- +# ------------------------------------------------------------------------------ printf "Deleting .git* in coreboot/ (history inside .git contains the blobs that were deleted)\n" rm -rf .git @@ -101,4 +101,3 @@ printf "\n\n" # ------------------- DONE ---------------------- - |