You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
562 B
Bash
26 lines
562 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
KALI_ARCHES="i386 amd64"
|
|
KALI_VERSION="${VERSION:-daily}"
|
|
|
|
cd $(dirname $0)
|
|
|
|
for KALI_ARCH in $KALI_ARCHES; do
|
|
lb clean --purge >prepare.log 2>&1
|
|
lb config --architecture $KALI_ARCH >>prepare.log 2>&1
|
|
lb build >/dev/null
|
|
if [ ! -e binary.iso ]; then
|
|
echo "Build of $KALI_ARCH live image failed" >&2
|
|
echo "Last 50 lines of the log:" >&2
|
|
tail -n 50 binary.log >&2
|
|
exit 1
|
|
fi
|
|
mv binary.iso images/kali-$KALI_VERSION-$KALI_ARCH.iso
|
|
mv binary.log images/kali-$KALI_VERSION-$KALI_ARCH.log
|
|
done
|
|
|
|
sha1sum images/*.iso >>images/SHA1SUMS
|
|
|