Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 10 Sep 1995 08:01:07 +0800 (HKT)
From:      John Beukema <john@gate.gateway.net.hk>
To:        "Jordan K. Hubbard" <jkh@time.cdrom.com>
Cc:        Ollivier Robert <roberto@keltia.freenix.fr>, "FreeBSD Hackers' list" <freebsd-hackers@FreeBSD.ORG>
Subject:   Re: [ANNOUNCE] kernel builder 
Message-ID:  <Pine.BSD/.3.91.950910073118.3391A-100000@gate.gateway.net.hk>
In-Reply-To: <17723.809269550@time.cdrom.com>

next in thread | previous in thread | raw e-mail | index | archive | help



On Thu, 24 Aug 1995, Jordan K. Hubbard wrote:

> > FYI. 
> 
> Pretty prohibitive license! :-( I think I'd just prefer to see someone
> do it over.  I believe they are already, in fact!
> 
> 				Jordan
> 
here is my makekernel

public domain or whatever you would like to put on it

jbeukema

#!/bin/sh
# compile new kernel
if [ $1 ] 
then
cd /sys/i386/conf
if ![ -s $1 ]
then 
exit
fi
vi $1
config $1
cd ../../compile/$1
make depend
make
cp bsd /bsd.$1
else
echo "usage makekernel <config file name>"
fi








Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSD/.3.91.950910073118.3391A-100000>