From owner-freebsd-questions@FreeBSD.ORG Wed Nov 28 21:52:11 2007 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E09F816A468 for ; Wed, 28 Nov 2007 21:52:11 +0000 (UTC) (envelope-from schiz0phrenic21@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.179]) by mx1.freebsd.org (Postfix) with ESMTP id C369313C4DD for ; Wed, 28 Nov 2007 21:52:11 +0000 (UTC) (envelope-from schiz0phrenic21@gmail.com) Received: by wa-out-1112.google.com with SMTP id k17so2115625waf for ; Wed, 28 Nov 2007 13:52:11 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=/Si372DIKv0kqWPtheFpcPO2Iq/RFd8XbVtj+lDgK5s=; b=IWnNDDXesk05pExTRjHCeeAfZeWI1K1/Bi+puOWl1OAMsS/atB/B2f8cBJXHEHoQgdGN907O0mVdFskdIlxQs8f7/gKHc6JaY+Sb66zqjPxZeRJkWdrJ9KpniEHX89ABiV/xC54mg6MrOpKB5MiwRmHgsd8ksSfV3zsLPtB2YP8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=RFwHpWfq/mA3jlRJX+qadtX0TxvQzreHnJpkFrbFukZAHHbkVZpIPOWuATK4dwGsznRzxbMPq7oyzbUqI1yUukHyj2cHSBaScKFKwjmBODgfJTTALBWAjcfyh7ygSKLNg/ILzoNDeKegn7gr6Chfu1z/VZZWo15WYSi7gdC2TZM= Received: by 10.115.59.4 with SMTP id m4mr1478593wak.1196286731139; Wed, 28 Nov 2007 13:52:11 -0800 (PST) Received: by 10.115.55.11 with HTTP; Wed, 28 Nov 2007 13:52:11 -0800 (PST) Message-ID: <8d23ec860711281352j4929cdc4sc232c04bb36f3b2a@mail.gmail.com> Date: Wed, 28 Nov 2007 16:52:11 -0500 From: Schiz0 To: "Philip M. Gollucci" In-Reply-To: <474DA2B0.5010709@riderway.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <8d23ec860711280454x72f3fa64k10ed8ee8fc33f7c7@mail.gmail.com> <474D7156.6090502@riderway.com> <8d23ec860711280854t6edb341fuef3d0881a0e0a3b5@mail.gmail.com> <474DA2B0.5010709@riderway.com> Cc: "freebsd-questions@freebsd.org" Subject: Re: Kernel Compile Error X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Nov 2007 21:52:12 -0000 On Nov 28, 2007 12:17 PM, Philip M. Gollucci wrote: > Schiz0 wrote: > > On Nov 28, 2007 8:47 AM, Philip M. Gollucci wrote: > >> Schiz0 wrote: > >>> Hey, > >>> > >>> I'm running FreeBSD 6.3-PRERELEASE. I recently csuped the source code > >>> (src-all) and built world. > >>> I then tried to "make buildkernel", and it ran for a little while, > >>> then gave the following error and stopped: > >>> > >>> http://schiz0.securityexploits.com/make.buildkernel.out > >>> The error is at the bottom - that is the log of the entire buildkernel process. > >> I see no error -- looks like you didnt' copy enough of it. > >> use -DNO_CLEAN to skip all the rm -f stuff at the start when you post > >> the new output. > >> > > Add these 3 to your kernel config file near the end. Don't use the > -DNO_CLEAN when you build this time. That was just to cut down on the > output in the log file (or when you intentionally don't want to delete > the build from the previous attempt or success) > > options SYSVSHM #SYSV-style shared memory > options SYSVMSG #SYSV-style message queues > options SYSVSEM #SYSV-style semaphores > Worked perfectly. Thanks. I took those lines out of the kernel config because I wasn't sure what SYSV-style was (And figured I didn't need it since I didn't know what it was, hehe). Thanks for the help.