summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancis Rowe <info@gluglug.org.uk>2014-11-28 05:39:30 +0000
committerFrancis Rowe <info@gluglug.org.uk>2014-11-28 05:39:30 +0000
commit870220ecc5ad88b747460b3e13051026068f71de (patch)
tree709abec60fcf155996f9ff1dd8959a7837a7759c
parent6bb7130102bd05c2b520abdfefddc20fa65f1dd9 (diff)
getcb: remove obsolete comments and echo commands
-rwxr-xr-xgetcb19
1 files changed, 7 insertions, 12 deletions
diff --git a/getcb b/getcb
index f5f6256..4efefe0 100755
--- a/getcb
+++ b/getcb
@@ -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 ----------------------