diff options
author | Francis Rowe <info@gluglug.org.uk> | 2014-11-28 00:39:30 (EST) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2014-11-28 00:39:30 (EST) |
commit | 870220ecc5ad88b747460b3e13051026068f71de (patch) | |
tree | 709abec60fcf155996f9ff1dd8959a7837a7759c | |
parent | 6bb7130102bd05c2b520abdfefddc20fa65f1dd9 (diff) | |
download | libreboot-870220ecc5ad88b747460b3e13051026068f71de.zip libreboot-870220ecc5ad88b747460b3e13051026068f71de.tar.gz libreboot-870220ecc5ad88b747460b3e13051026068f71de.tar.bz2 |
getcb: remove obsolete comments and echo commands
-rwxr-xr-x | getcb | 19 |
1 files changed, 7 insertions, 12 deletions
@@ -26,8 +26,6 @@ set -u -e -v # Remove the old version that may exist # ---------------------------------------------------------------------------------- -echo "DOWNLOADING AND PATCHING COREBOOT" - rm -rf coreboot # Get latest coreboot: @@ -37,7 +35,7 @@ rm -rf coreboot git clone http://review.coreboot.org/coreboot # there are modifications required -cd coreboot +cd coreboot/ # reset to previously tested revision git reset --hard c637a887dde1c63bf3863e70cbe19dedf5f6ca02 @@ -69,21 +67,18 @@ git fetch http://review.coreboot.org/coreboot refs/changes/61/7561/2 && git cher # Run coreboot-libre deblob scripts # --------------------------------------------------------------------------------- -# Deblobbing was done manually for this pre-release (will re-tool linux-libre deblob scripts later): -cd ../ -echo "deblobbing coreboot" -./DEBLOB -# The git history (git diff command) shows what blobs were deleted (including the blobs themselves) which is a freedom issue. Just delete .git altogether: -cd coreboot +# The git history (git diff command) shows what blobs were deleted +# along with the contents of those blobs. This needs to be deleted +# for libreboot's purposes. rm -rf .git rm -f .gitreview rm -f .gitmodules rm -f .gitignore + cd ../ -echo "finished deblobbing coreboot" -# we're done -echo "FINISHED DOWNLOADING AND PATCHING COREBOOT" +# Deblob coreboot +./DEBLOB # ------------------- DONE ---------------------- |