#!/bin/sh
echo -e "\nInstalling the bootscripts\n"

echo -e "Installting Linux From Scratch bootscripts...\c "
tar xf $TOP/lfs-bootscripts.tar.bz2
cd lfs-bootscripts-20080522
make install > /dev/null
cd ..
rm -rf lfs-bootscripts-20080522
echo -e "\tDone"

tar xf $TOP/bootscripts-cross-lfs-1.1-pre10.tar.bz2
cd bootscripts-cross-lfs

echo -e "Installing General Purpose Mouse bootscript...\c "
make install-gpm > /dev/null
echo -e "\tDone"

echo -e "Installing DHCP bootscript...\c "
make install-service-dhclient > /dev/null
echo -e "\t\t\tDone"

cd ..
rm -rf bootscripts-cross-lfs

