#!/bin/sh
#
# Shell script to generate netboot distribution

./configure --sysconfdir= --enable-bootrom
cp config.cache config.tmp
make realclean
mv config.tmp config.cache
./configure --sysconfdir= --enable-bootrom
make
make distclean

