#!/bin/sh

export HDBMEGS=64
keep_hdb=false

build_in_dir()
{
	cd "$1" || exit 1
	rm -f hdb.img
	nice -n10 time ./native-build.sh ../hdc.img
	$keep_hdb || rm -f hdb.img
	echo >&3 "Finished: $1"
}

started=false
for dir; do
	test -d "$dir" || continue
	test -e "$dir/native-build.sh" || continue
	echo "Starting: $dir"
	build_in_dir "$dir" 3>&1 </dev/null >"$dir.log" 2>&1 &
	started=true
done

$started || {
	echo "Give me system-image-ARCH directories on command line"
	exit 1
}

echo "Waiting to finish"
wait
echo "Done, check the logs"