#!/bin/sh
set -e
pwd=$(pwd)
for dir in linux-kernel-di*; do
	if [ -d "$dir" ]; then
		cd $dir
		kernel-wedge build-all
		cd $pwd
	fi
done
