summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancis Rowe <info@gluglug.org.uk>2015-06-08 07:40:33 (EDT)
committer Francis Rowe <info@gluglug.org.uk>2015-06-08 07:40:33 (EDT)
commit5c6c9806f35878215e11b26c7e6d56357363778b (patch)
tree606345616fd138ca875d67081132784e4e9e356d
parent2ababd6422821e17ff28f84155e65ac81a160ca5 (diff)
downloadlibreboot-5c6c9806f35878215e11b26c7e6d56357363778b.zip
libreboot-5c6c9806f35878215e11b26c7e6d56357363778b.tar.gz
libreboot-5c6c9806f35878215e11b26c7e6d56357363778b.tar.bz2
build/release/util: split sha512sum into build/release/sha512sums
-rwxr-xr-xresources/scripts/helpers/build/release/sha512sums29
-rwxr-xr-xresources/scripts/helpers/build/release/util9
2 files changed, 29 insertions, 9 deletions
diff --git a/resources/scripts/helpers/build/release/sha512sums b/resources/scripts/helpers/build/release/sha512sums
new file mode 100755
index 0000000..8bb1c26
--- /dev/null
+++ b/resources/scripts/helpers/build/release/sha512sums
@@ -0,0 +1,29 @@
+#!/bin/bash
+
+#
+# helper script: create sha512sum file for the current snapshot
+#
+# Copyright (C) 2015 Francis Rowe <info@gluglug.org.uk>
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+# create sha512sum manifest
+cd release/
+printf "Creating manifest of SHA512 sums in sha512sum.txt...\n"
+for file in $(find -type f); do sha512sum $file >> sha512sum.txt; done
+printf "...done.\n"
+cd ../
+
+printf "\n"
diff --git a/resources/scripts/helpers/build/release/util b/resources/scripts/helpers/build/release/util
index cf38cb9..5d1c1c9 100755
--- a/resources/scripts/helpers/build/release/util
+++ b/resources/scripts/helpers/build/release/util
@@ -273,13 +273,4 @@ printf "\n\n"
# The uncompressed archives are no longer needed
rm -Rf libreboot_util
-# create sha512sum manifest
-cd release/
-printf "Creating manifest of SHA512 sums in sha512sum.txt...\n"
-for file in $(find -type f); do sha512sum $file >> sha512sum.txt; done
-printf "...done.\n"
-cd ../
-
-printf "\n\n"
-
# ------------------- DONE ----------------------