boot-libre: ship the blob list too

This should enable various distributions and build system to reuse
that blob to deblob u-boot releases themselves.

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
This commit is contained in:
Denis 'GNUtoo' Carikli
2022-02-16 15:31:08 +01:00
parent 414aa56287
commit ee2731af44
3 changed files with 98 additions and 10 deletions
+62 -4
View File
@@ -29,6 +29,11 @@ supported_uboot_versions=" \
2021.07 \
"
topdir="$(realpath $(dirname $(realpath $0))/../../../../)"
uboot_release_topdir="${topdir}/release/u-boot-libre"
release_files=""
usage()
{
progname="resources/scripts/build/release/u-boot-libre"
@@ -48,13 +53,36 @@ usage()
"Prints this help"
}
append_release_file()
{
if [ -z "${release_files}" ] ; then
release_files="${release_files}$1"
else
release_files="${release_files} $1"
fi
}
append_release_files()
{
for file in "$@" ; do
append_release_file "${file}"
done
}
print_release_files()
{
printf "Source code archives available at:\n"
for file in "${release_files}" ; do
printf "\t${file}\n"
done
}
release_deblobbed_uboot()
{
version="$1"
topdir="$(realpath $(dirname $(realpath $0))/../../../../)"
versiondir="${topdir}/release/u-boot-libre/${version}-${revision}"
tmpdir="${versiondir}/u-boot-libre-${version}-${revision}"
release_version_dir="${uboot_release_topdir}/${version}-${revision}"
tmpdir="${release_version_dir}/u-boot-libre-${version}-${revision}"
tarball="${tmpdir}.tar"
printf "Building source code archive, version %s revision %s\n" \
@@ -88,15 +116,44 @@ release_deblobbed_uboot()
rm -rf "${tmpdir}/"
printf "Source code archives available at:\n\t%s\n\t%s\n\t%s\n" \
append_release_files \
"${tarball}" \
"${tarball}.lz" \
"${tarball}.xz"
}
release_uboot_blobs_list()
{
version="$1"
blobs_list="$(${topdir}/download u-boot --blobs-list v${version})"
release_version_dir="${uboot_release_topdir}/${version}-${revision}"
destination="${release_version_dir}/blobs-${version}-${revision}.list"
cd "${topdir}"
rm -rf \
"${destination}" \
"${destination}.lz" \
"${destination}.xz"
install -m 755 -d "${release_version_dir}"
install -m 644 -T "${blobs_list}" "${destination}"
lzip -9 --keep -vv "${destination}"
xz -9 --keep -vv "${destination}"
append_release_files \
"${destination}" \
"${destination}.lz" \
"${destination}.xz"
}
if [ $# -eq 0 ] ; then
for version in ${supported_uboot_versions} ; do
release_deblobbed_uboot "${version}"
release_uboot_blobs_list "${version}"
done
exit 0
elif [ $# -eq 1 -a "$1" == "--help" ] ; then
@@ -112,6 +169,7 @@ elif [ $# -eq 1 ] ; then
for revision in ${supported_uboot_revisions} ; do
if [ "${revision}" = "$1" ] ; then
release_deblobbed_uboot "$1"
release_uboot_blobs_list "$1"
exit 0
fi
done
+33 -6
View File
@@ -110,16 +110,22 @@ usage()
progname="./download u-boot"
printf "Usage:\n"
printf "\t%s # %s\n" \
printf "\t%s # %s\n" \
"${progname}" \
"Download latest u-boot git revision and deblob it"
printf "\t%s [revision] # %s\n" \
printf "\t%s [revision] # %s\n" \
"${progname}" \
"Download given u-boot git revision and deblob it"
printf "\t%s --list-revisions # %s\n" \
printf "\t%s --blobs-list # %s\n" \
"${progname}" \
"Print the path of the blobs.list file for the latest supported u-boot revision"
printf "\t%s --blobs-list [revision] # %s\n" \
"${progname}" \
"Print the path of the blobs.list file for the given u-boot revision"
printf "\t%s --list-revisions # %s\n" \
"${progname}" \
"List supported u-boot revisions"
printf "\t%s --help # %s\n" \
printf "\t%s --help # %s\n" \
"${progname}" \
"Prints this help"
}
@@ -136,8 +142,8 @@ download_uboot_revision()
printf "\n\n"
if [ "${deleteblobs}" = "true" ]; then
bloblist="resources/u-boot/default/blobs.list"
for blob_path in $(strip_comments "${bloblist}"); do
blobslist="resources/u-boot/default/blobs.list"
for blob_path in $(strip_comments "${blobslist}"); do
if echo "${blob_path}" | \
grep '/$' 2>&1 >/dev/null ; then
printf "Deleting blob directory: '%s/%s'\n" \
@@ -152,6 +158,11 @@ download_uboot_revision()
fi
}
print_blobs_list_path()
{
printf "resources/u-boot/default/blobs.list\n"
}
if [ $# -eq 0 ] ; then
latest_revision="$(echo ${supported_uboot_revisions} | tail -n1)"
download_uboot_revision "${latest_revision}"
@@ -164,6 +175,22 @@ elif [ $# -eq 1 -a "$1" == "--list-revisions" ] ; then
printf "${revision}\n"
done
exit 0
elif [ $# -eq 1 -a "$1" == "--blobs-list" ] ; then
latest_revision="$(echo ${supported_uboot_revisions} | tail -n1)"
print_blobs_list_path "${latest_revision}"
exit 0
elif [ $# -eq 2 -a "$1" == "--blobs-list" ] ; then
found=0
for revision in ${supported_uboot_revisions} ; do
if [ "${revision}" = "$2" ] ; then
print_blobs_list_path "$2"
exit 0
fi
done
printf "Error: Revision '${1}' is not supported\n"
exit 1
elif [ $# -eq 1 ] ; then
found=0
for revision in ${supported_uboot_revisions} ; do