diff options
author | Leah Rowe <info@minifree.org> | 2017-06-25 23:50:50 +0000 |
---|---|---|
committer | Gogs <gogitservice@gmail.com> | 2017-06-25 23:50:50 +0000 |
commit | 3f32c13d5ac9159978556bc3fcfd73f39b4e218d (patch) | |
tree | b3595320f129404ef8c593c223abed7e82643895 /projects | |
parent | 0accfe9b22fc8d79461101c33f876767da72d3ef (diff) | |
parent | 00966661823723ea929ddf1f913d8ab0c2fc4796 (diff) | |
download | librebootfr-3f32c13d5ac9159978556bc3fcfd73f39b4e218d.tar.gz librebootfr-3f32c13d5ac9159978556bc3fcfd73f39b4e218d.zip |
Merge branch 'renaming-vars' of kragle/libreboot into master
Diffstat (limited to 'projects')
-rw-r--r-- | projects/libreboot-release/install/libreboot-release | 30 | ||||
-rwxr-xr-x | projects/libreboot-sources/install/libreboot-sources | 4 |
2 files changed, 17 insertions, 17 deletions
diff --git a/projects/libreboot-release/install/libreboot-release b/projects/libreboot-release/install/libreboot-release index 97f385df..08c4d64b 100644 --- a/projects/libreboot-release/install/libreboot-release +++ b/projects/libreboot-release/install/libreboot-release @@ -22,8 +22,8 @@ SYSTEMS="systems" IMAGES="images" TOOLS="tools" -TAR_XZ="tar.xz" -SHA256SUM="sha256sum" +ARCHIVE="tar.xz" +CHECKSUM="sha256sum" ASC="asc" usage() { @@ -66,15 +66,15 @@ download() { directory="$directory-$part" fi - path="$root/$prefix/$directory/$project.$TAR_XZ" - url="$DOWNLOAD_URL/$prefix/$directory/$project.$TAR_XZ" + path="$root/$prefix/$directory/$project.$ARCHIVE" + url="$DOWNLOAD_URL/$prefix/$directory/$project.$ARCHIVE" if wget --quiet --spider "$url" then mkdir -p "$( dirname "$path" )" wget -O "$path" "$url" - wget -O "$path.$SHA256SUM" "$url.$SHA256SUM" - wget -O "$path.$ASC" "$url.$ASC" + wget -O "$path.$CHECKSUM" "$url.$CHECKSUM" + wget -O "$path.$DSIG" "$url.$DSIG" printf '\n%s\n' "Downloaded $project" @@ -92,15 +92,15 @@ download() { sources() { local project=$1 - local url="$DOWNLOAD_URL/$SOURCES/$project/$project.$TAR_XZ" - local path="$root/$SOURCES/$project/$project.$TAR_XZ" + local url="$DOWNLOAD_URL/$SOURCES/$project/$project.$ARCHIVE" + local path="$root/$SOURCES/$project/$project.$ARCHIVE" if wget --quiet --spider "$url" then mkdir -p "$( dirname "$path" )" wget -O "$path" "$url" - wget -O "$path.$SHA256SUM" "$url.$SHA256SUM" - wget -O "$path.$ASC" "$url.$ASC" + wget -O "$path.$CHECKSUM" "$url.$CHECKSUM" + wget -O "$path.$DSIG" "$url.$DSIG" printf '\n%s\n' "Downloaded $project sources" else @@ -136,21 +136,21 @@ verify() { directory="$directory-$part" fi - path="$root/$prefix/$directory/$project.$TAR_XZ" + path="$root/$prefix/$directory/$project.$ARCHIVE" if ! [ -f "$path" ] then continue fi - checksum_path="$path.$SHA256SUM" - signature_path="$path.$ASC" + checksum_path="$path.$CHECKSUM" + signature_path="$path.$DSIG" if [ -f "$checksum_path" ] then ( cd "$( dirname "$path" )" - sha256sum -c "$project.$TAR_XZ.$SHA256SUM" + sha256sum -c "$project.$ARCHIVE.$CHECKSUM" ) else printf '%s\n' "Could not verify $project checksum!" >&2 @@ -200,7 +200,7 @@ extract() { directory="$directory-$part" fi - path="$root/$prefix/$directory/$project.$TAR_XZ" + path="$root/$prefix/$directory/$project.$ARCHIVE" if ! [ -f "$path" ] then diff --git a/projects/libreboot-sources/install/libreboot-sources b/projects/libreboot-sources/install/libreboot-sources index f51fb93a..d836054d 100755 --- a/projects/libreboot-sources/install/libreboot-sources +++ b/projects/libreboot-sources/install/libreboot-sources @@ -18,7 +18,7 @@ BUILD_SYSTEM="libreboot" SOURCES="sources" -TAR_XZ="tar.xz" +ARCHIVE="tar.xz" usage() { printf '%s\n' "$executable [action] [sources path] (extract path)" >&2 @@ -46,7 +46,7 @@ extract() { return fi - archive=$( find $sources_path -name "$BUILD_SYSTEM-sources.$TAR_XZ" || true ) + archive=$( find $sources_path -name "$BUILD_SYSTEM-sources.$ARCHIVE" || true ) if [ -z "$archive" ] then printf '%s\n' "Finding $BUILD_SYSTEM sources archive failed!" >&2 |