Skip to content
Snippets Groups Projects
Commit cb916368 authored by chrissi^'s avatar chrissi^
Browse files

Also print build info at the end of build

parent b30c4e38
No related branches found
No related tags found
No related merge requests found
......@@ -75,17 +75,20 @@ rm -rf output/images
mkdir -p output
mkdir -p output/cmd
echo "#######################################"
echo "#######################################"
echo Welcome! This is the Freifunk Braunschweig Gluon Bulder script. Nice to serve you
echo - Building for the following GLUON_BRANCH: \"${BRANCH}\"
echo - The release will be tagged: ${RELEASETAG}
echo - The release will be namend: ${RELEASENAME}
echo - Bulding with j=${J}
echo - Debug-Config: \"${DEBUG}\"
echo - Building for the following architectures: ${ARCHITECTURES}
echo "#######################################"
echo "#######################################"
function print_info () {
echo "#######################################"
echo "#######################################"
echo Welcome! This is the Freifunk Braunschweig Gluon Bulder script. Nice to serve you
echo - Building for the following GLUON_BRANCH: \"${BRANCH}\"
echo - The release will be tagged: ${RELEASETAG}
echo - The release will be namend: ${RELEASENAME}
echo - Bulding with j=${J}
echo - Debug-Config: \"${DEBUG}\"
echo - Building for the following architectures: ${ARCHITECTURES}
echo "#######################################"
echo "#######################################"
}
print_info
# update toolchain to current release
make update
......@@ -167,3 +170,5 @@ echo Renaming files for consistent naming scheme
(cd output/${RELEASETAG}/factory; md5sum * > MD5SUMS) || true
(cd output/${RELEASETAG}/sysupgrade; md5sum * > MD5SUMS) || true
(cd output/${RELEASETAG}/other; md5sum * > MD5SUMS) || true
print_info
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment