From owner-freebsd-questions@FreeBSD.ORG Fri Jun 26 21:01:32 2009 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 B0D4C106564A for ; Fri, 26 Jun 2009 21:01:32 +0000 (UTC) (envelope-from kstewart@owt.com) Received: from smtp.owt.com (smtp.owt.com [64.146.239.50]) by mx1.freebsd.org (Postfix) with ESMTP id 834A38FC0A for ; Fri, 26 Jun 2009 21:01:32 +0000 (UTC) (envelope-from kstewart@owt.com) Received: from kstewart2.owt.com (kstewart2.owt.com [64.146.237.228]) (authenticated bits=0) by smtp.owt.com (8.13.8/8.13.8) with ESMTP id n5QL1Uw5004640; Fri, 26 Jun 2009 14:01:31 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=owt.com; s=default; t=1246050091; bh=dcd8IPe+LyMzjLFgRE5vkJX8wAdgQJsUKt6B73/+MvY=; h=From:To:Subject:Date:Cc:References:In-Reply-To:MIME-Version: Content-Type:Content-Transfer-Encoding:Message-Id; b=bWH0birPSZAnv M4MBhUFgW7eAZrXDTkDdGd2rtCewsWWkWJLAOLu0NTK8zr75LFWO+EWsg0NpGcwRIXv BgQ3vyD0FpaaQ6RuHt8ErRT+llnn760yyJ2mlFroIx8b3Nj0t8XznN9xnZB7ye1HXjl s/8Fw/2bll230kj55Z77U8UE= From: Kent Stewart To: freebsd-questions@freebsd.org Date: Fri, 26 Jun 2009 14:01:25 -0700 User-Agent: KMail/1.9.10 References: <12460400390643.1842379727.fomin@pisem.net> <200906261301.54442.kstewart@owt.com> <12460479580239.49250165.fomin@pisem.net> In-Reply-To: <12460479580239.49250165.fomin@pisem.net> MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1251" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200906261401.25592.kstewart@owt.com> Cc: fomin@pisem.net Subject: Re: my kernel is not build/install 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: Fri, 26 Jun 2009 21:01:33 -0000 On Friday 26 June 2009 01:25:58 pm fomin@pisem.net wrote: > On Friday 26 June 2009 12:50:22 pm Rolf G Nielsen wrote: > > =CA=E8=F0=E8=EB=EB =C0. =D4=EE=EC=E8=ED wrote: > > > =C7=E4=F0=E0=E2=F1=F2=E2=F3=E9=F2=E5, Rolf. > > > > > > In my first mail i attach my config file. Latest i attach full console > > > output. > > > > > > =C2=FB =EF=E8=F1=E0=EB=E8 26 =E8=FE=ED=FF 2009 =E3., 23:35:14: > > >> Brent Bloxam wrote: > > >>> fomin@pisem.net wrote: > > >>>> When I make my kernel (make kernel KERNCONF=3DKERNEL) it stop whith > > >>>> **** Error code 1 > > >>> > > >>> According to Chapter 8.5 of the handbook > >=20 (http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-bui= lding.html): > > >>>> 1. > > >>>> Change to the /usr/src directory: > > >>>> # cd /usr/src > > >>>> > > >>>> 2. > > >>>> Compile the kernel: > > >>>> # make buildkernel KERNCONF=3DMYKERNEL > > >>>> > > >>>> 3. > > >>>> Install the new kernel: > > >>>> # make installkernel KERNCONF=3DMYKERNEL > > >>> > > >>> You need to use `make buildkernel`, not `make kernel` > > >>> _______________________________________________ > > >>> freebsd-questions@freebsd.org mailing list > > >>> http://lists.freebsd.org/mailman/listinfo/freebsd-questions > > >>> To unsubscribe, send any mail to > > >>> "freebsd-questions-unsubscribe@freebsd.org" > > >> > > >> According to the makefile, "make kernel" does "make buildkernel" + > > >> "make installkernel", so that shouldn't be the problem. Your question > > >> is very vague. Could you please attach the complete output (or at > > >> least the last portion of it, e.g. 10-15 lines or so). > > > > First, please do not reply to me only. Put the list on CC, in case > > somebody else has some insight on the matter. > > > > I looked at the kernel config file, but it is pretty difficult to see > > what is wrong, without either knowing all the options by heart or > > comparing it to the NOTES files. Moreover, I am sorry, but I cannot find > > the console output that you say you attached. Either I am blind or it > > got stripped somewhere on the way. > > He has umass > > # USB support > device uhci # UHCI PCI->USB interface > device ohci # OHCI PCI->USB interface > device ehci # EHCI PCI->USB interface (USB 2.0) > device usb # USB Bus (required) > #device udbp # USB Double Bulk Pipe devices > device ugen # Generic > device uhid # "Human Interface Devices" > device ukbd # Keyboard > device ulpt # Printer > device umass # Disks/Mass storage - Requires scbus and da > > But in his "SCSI peripherals" he has scbus and da commented out. > > Kent >May be Kent Stewart wright, cose http://dumpz.org/10103/. I try compile th= e=20 >my kernel whith the all "SCSI peripherals" uncomment.=20 You need to add the error messages. You got stdout and what was wrong was=20 still missing. I have a script that I use to do a build[world, kernel] that=20 uses /var/log/build. I added build to ..\log. It does nothing more than make buildkernel KERNCONF=3DFREEBSD1 2>&1 |=20 tee /var/log/build/bkernel-`date "+%Y%m%d-%H%M"`.log It leaves a complete log everytime I build a kernel. Your options would be= =20 different and I also use csh. Kent =2D-=20 Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html