aboutsummaryrefslogtreecommitdiffstats
path: root/build-all.bash
blob: c6d172ee1dd2f8ca8e83abf752f8f35444f33e78 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/bash
set -ex

BASE="$(readlink -f "$(dirname "$(readlink -f "$0")")")"
for i in "$BASE"/kernels/*; do
	KERNEL="${i##*/}"
	[[ -d "$BASE/kernels/$KERNEL" ]] || continue
	"$BASE/build-one.bash" "$KERNEL"
done