diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-06-08 12:40:33 +0100 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-06-08 12:40:33 +0100 |
commit | 5c6c9806f35878215e11b26c7e6d56357363778b (patch) | |
tree | 606345616fd138ca875d67081132784e4e9e356d /resources/scripts/helpers/build | |
parent | 2ababd6422821e17ff28f84155e65ac81a160ca5 (diff) | |
download | librebootfr-5c6c9806f35878215e11b26c7e6d56357363778b.tar.gz librebootfr-5c6c9806f35878215e11b26c7e6d56357363778b.zip |
build/release/util: split sha512sum into build/release/sha512sums
Diffstat (limited to 'resources/scripts/helpers/build')
-rwxr-xr-x | resources/scripts/helpers/build/release/sha512sums | 29 | ||||
-rwxr-xr-x | resources/scripts/helpers/build/release/util | 9 |
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 00000000..8bb1c261 --- /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 cf38cb98..5d1c1c97 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 ---------------------- |