#!/bin/bash
# Usage: recomp <cr>
# Must be executed as root.

[ -d /usr/src/linux-recomp ] && cd /usr/src/linux-recomp || cd /usr/src/linux
make clean
while make bzImage
 do
   make clean
 done

