Kernel fails to compile

2003-09-01 Thread Martin Jessa
Sources fetched an hour ago. Running make in /usr/src/sys/i386/compile/MYKERNEL : cc -c -O -pipe -march=i486 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I../../..

Re: Kernel fails to compile

2003-09-01 Thread Doug Barton
On Mon, 1 Sep 2003, Martin Jessa wrote: Sources fetched an hour ago. Running make in /usr/src/sys/i386/compile/MYKERNEL : Remove device pcic from your kernel config. My understanding is that it's broken anyway, so you're not losing anything by removing it. HTH, Doug -- This .signature

Re: Kernel fails to compile

2003-09-01 Thread Martin Jessa
Hi. Great, now it compiles cleanly. Thanks Doug. On Mon, 1 Sep 2003, Martin Jessa wrote: Sources fetched an hour ago. Running make in /usr/src/sys/i386/compile/MYKERNEL : Remove device pcic from your kernel config. My understanding is that it's broken anyway, so you're not losing

Current kernel fails to compile

2000-11-10 Thread Harti Brandt
Hello, The following commit seems to break kernel compiles on i386 because the removed header files cannot be found when the modules are build: marcel 2000/11/08 23:27:56 PST Modified files: sys/compat/linux linux_file.c linux_ioctl.c linux_ipc.c

Re: Current kernel fails to compile

2000-11-10 Thread Marcel Moolenaar
Harti Brandt wrote: marcel 2000/11/08 23:27:56 PST Modified files: sys/compat/linux linux_file.c linux_ioctl.c linux_ipc.c linux_misc.c linux_signal.c linux_socket.c linux_stats.c sys/i386/linux linux.h

UPDATING - kernel fails to compile

2000-02-05 Thread Dan Langille
I can't get my kernel to compile when following the UPDATING instructions. I also note that the "To build a kernel" instructions contains one too many "../". Here's what led me to it: [root@buff:/usr/src/sys/compile/BUFF] # make install install -c -m 555 -o root -g wheel -fschg kernel

Re: UPDATING - kernel fails to compile

2000-02-05 Thread Jim Bloom
You still didn't get your installworld to complete succesfully. You have install, libc, and libutil out of sync. I believe the correct procedure for installing everything in your case is: make -k -NOFSCHG installworld make installworld Jim Bloom [EMAIL PROTECTED] Dan Langille

Re: UPDATING - kernel fails to compile

2000-02-05 Thread Dan Langille
I think you mean -DNOFSCHG, which it what I thought I did. I shall try again. cheers. On 5 Feb 00, at 21:25, Jim Bloom wrote: You still didn't get your installworld to complete succesfully. You have install, libc, and libutil out of sync. I believe the correct procedure for installing

Re: UPDATING - kernel fails to compile

2000-02-05 Thread Dan Langille
After a make -k -DNOFSCHG installworld and a make installworld, I'm getting this: install -c -s -o root -g wheel -m 555 genassym /usr/bin install: genassym: No such file or directory *** Error code 71 Stop in /usr/src/usr.bin/genassym. *** Error code 1 Stop in /usr/src/usr.bin. *** Errror

Re: UPDATING - kernel fails to compile

2000-02-05 Thread Chuck Robey
On Sun, 6 Feb 2000, Dan Langille wrote: After a make -k -DNOFSCHG installworld and a make installworld, I'm getting this: install -c -s -o root -g wheel -m 555 genassym /usr/bin install: genassym: No such file or directory *** Error code 71 It's a do-once type of thing, like the

Re: UPDATING - kernel fails to compile

2000-02-05 Thread Dan Langille
On 5 Feb 00, at 22:30, Chuck Robey wrote: On Sun, 6 Feb 2000, Dan Langille wrote: After a make -k -DNOFSCHG installworld and a make installworld, I'm getting this: install -c -s -o root -g wheel -m 555 genassym /usr/bin install: genassym: No such file or directory *** Error

Re: UPDATING - kernel fails to compile

2000-02-05 Thread Chuck Robey
On Sun, 6 Feb 2000, Dan Langille wrote: It's a do-once type of thing, like the xinstall stuff. Go install genassym once, it won't bother you again. It was discussed in the lists, and doesn't affect most build intervals. You got *lucky*. Ahh yes, and it's in UPDATING. my bad. Sorry.