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"
|
||||
else
|
||||
echo " ... checking your mirror"
|
||||
make mirrorcheck
|
||||
make mirrorcheck-binary
|
||||
make mirrorcheck-source
|
||||
if [ $? -gt 0 ]; then
|
||||
echo "ERROR: Your mirror has a problem, please correct it." >&2
|
||||
exit 1
|
||||
|
|
|
@ -15,7 +15,10 @@ do
|
|||
make ${CODENAME}_status
|
||||
echo " ... checking your mirror"
|
||||
if [ "$SKIPMIRRORCHECK" != "yes" ] ; then
|
||||
make mirrorcheck
|
||||
make mirrorcheck-binary
|
||||
if [ "$ARCH" = "i386" ]; then
|
||||
make mirrorcheck-source
|
||||
fi
|
||||
else
|
||||
echo "WARNING: skipping mirrorcheck"
|
||||
fi
|
||||
|
@ -58,15 +61,11 @@ do
|
|||
make bin-official_images
|
||||
echo Generating MD5Sums of the images
|
||||
make imagesums
|
||||
echo Generating list files for images
|
||||
make pi-makelist
|
||||
|
||||
export OUT="$TMP_OUT/src"; mkdir -p $OUT
|
||||
make src-official_images
|
||||
echo Generating MD5Sums of the images
|
||||
make imagesums
|
||||
echo Generating list files for images
|
||||
make pi-makelist
|
||||
else
|
||||
export OUT=$TMP_OUT/$ARCH; mkdir -p $OUT
|
||||
make bin-official_images
|
||||
|
|
Loading…
Reference in New Issue