Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 05 Mar 1995 12:26:14 +0100 (MET)
From:      Christoph Kukulies <kuku@gilberto.physik.rwth-aachen.de>
To:        jhay@mikom.csir.co.za (John Hay)
Cc:        freebsd-current@freefall.cdrom.com (user alias)
Subject:   Re: kernel auf BLUES schiefgelaufen
Message-ID:  <199503051126.MAA18300@gilberto.physik.rwth-aachen.de>
In-Reply-To: <199503051059.MAA19036@dolphin.mikom.csir.co.za> from "John Hay" at Mar 5, 95 12:59:39 pm

next in thread | previous in thread | raw e-mail | index | archive | help
> 
> > 
> > I cannot build a kernel at present due to the following:
> > 
> > > cc -c -O -W -Wreturn-type -Wcomment -Wredundant-decls  -nostdinc -I. -I../..
> > -I../../sys -I../../../include -DBLUESGUS -DI486_CPU -DEXCLUDE_PAS
> > -DEXCLUDE_OPL3 -DEXCLUDE_YM3812 -DEXCLUDE_SB16 -DEXCLUDE_SBPRO
> > -DEXCLUDE_SB_EMULATION -DEXCLUDE_SB -DBOUNCE_BUFFERS -DNCONS=8
> > -DSCSI_DELAY=15 -DFAT_CURSOR -DUCONSOLE -DCOMPAT_43 -DPROCFS
> > -DCD9660 -DMSDOSFS -DNFS -DFFS -DINET -DKERNEL -Di386
> > -DLOAD_ADDRESS=0xF0100000  ../../i386/i386/conf.c
> > > ../../i386/i386/conf.c:211: matcd.h: No such file or directory
> > > ../../i386/i386/conf.c:842: nic.h: No such file or directory
> > > ../../i386/i386/conf.c:853: nnic.h: No such file or directory
> > > *** Error code 1
> > > 
> > > Stop.
> > > 
> > I did a make includes, cd config, make cleandir depend all install.
> > 
> And then you did a "cd /sys/i386/conf; config <YOUR KERNEL NAME>" ?

You're kidding :-). For the matcd.h this might be missing due a sup
but I have no explanation for the missing nic/nnic.h files which
seem to be related to ppp.

This is my makekernel script invoked by cron after a make world::
#!/bin/sh
cd /sys/i386/conf 
config BLUESGUS >config.log 2>&1 
cd /sys/compile/BLUESGUS
make depend >/root/makekernel.log 2>&1 
make >>/root/makekernel.log 2>&1 
if [ $? = 0 ] ; then
    tail /root/makekernel.log | mail -s "Ein neuer kernel auf BLUES `date`" kuku
    mv /kernel.old /kernel.alt 
    mv /kernel /kernel.old 
    mv ./kernel /kernel  
    sleep 30
    /sbin/shutdown -r +3
    exit 0   # NOT REACHED
fi
tail /root/makekernel.log | mail -s "kernel auf BLUES schiefgelaufen" kuku
exit 1
> 
> -- 
> John Hay -- jhay@mikom.csir.co.za
> 

--Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de
FreeBSD blues 2.1.0-Development FreeBSD 2.1.0-Development #0: Sun Feb 26
20:27:39  1995     root@blues:/usr/src/sys/compile/BLUESGUS  i386



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199503051126.MAA18300>