#!/bin/sh
# compile_linux

cd /usr/src/linux &&
make mrproper &&
yes "" | make config &&
# make menuconfig &&
make dep &&
make bzImage &&
make modules &&
make modules_install &&
cp arch/i386/boot/bzImage /boot/lfskernel &&
cp System.map /boot
