#!/bin/sh
# Usage: recomp <cr>
# Must be executed as root, in the /usr/src/linux directory.

while [ -1 ]
do
	make clean
	make boot
done

