Checking in JTE work to the trunk.
This commit is contained in:
parent
2c24d679d4
commit
c093888cb2
3
build.sh
3
build.sh
|
@ -21,7 +21,8 @@ if [ "$SKIPMIRRORCHECK" = "yes" ]; then
|
||||||
echo " ... WARNING: skipping mirror check"
|
echo " ... WARNING: skipping mirror check"
|
||||||
else
|
else
|
||||||
echo " ... checking your mirror"
|
echo " ... checking your mirror"
|
||||||
make mirrorcheck
|
make mirrorcheck-binary
|
||||||
|
make mirrorcheck-source
|
||||||
if [ $? -gt 0 ]; then
|
if [ $? -gt 0 ]; then
|
||||||
echo "ERROR: Your mirror has a problem, please correct it." >&2
|
echo "ERROR: Your mirror has a problem, please correct it." >&2
|
||||||
exit 1
|
exit 1
|
||||||
|
|
|
@ -15,7 +15,10 @@ do
|
||||||
make ${CODENAME}_status
|
make ${CODENAME}_status
|
||||||
echo " ... checking your mirror"
|
echo " ... checking your mirror"
|
||||||
if [ "$SKIPMIRRORCHECK" != "yes" ] ; then
|
if [ "$SKIPMIRRORCHECK" != "yes" ] ; then
|
||||||
make mirrorcheck
|
make mirrorcheck-binary
|
||||||
|
if [ "$ARCH" = "i386" ]; then
|
||||||
|
make mirrorcheck-source
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
echo "WARNING: skipping mirrorcheck"
|
echo "WARNING: skipping mirrorcheck"
|
||||||
fi
|
fi
|
||||||
|
@ -58,15 +61,11 @@ do
|
||||||
make bin-official_images
|
make bin-official_images
|
||||||
echo Generating MD5Sums of the images
|
echo Generating MD5Sums of the images
|
||||||
make imagesums
|
make imagesums
|
||||||
echo Generating list files for images
|
|
||||||
make pi-makelist
|
|
||||||
|
|
||||||
export OUT="$TMP_OUT/src"; mkdir -p $OUT
|
export OUT="$TMP_OUT/src"; mkdir -p $OUT
|
||||||
make src-official_images
|
make src-official_images
|
||||||
echo Generating MD5Sums of the images
|
echo Generating MD5Sums of the images
|
||||||
make imagesums
|
make imagesums
|
||||||
echo Generating list files for images
|
|
||||||
make pi-makelist
|
|
||||||
else
|
else
|
||||||
export OUT=$TMP_OUT/$ARCH; mkdir -p $OUT
|
export OUT=$TMP_OUT/$ARCH; mkdir -p $OUT
|
||||||
make bin-official_images
|
make bin-official_images
|
||||||
|
|
Loading…
Reference in New Issue