From owner-freebsd-questions@FreeBSD.ORG Fri Jun 26 20:03:33 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 9F3DE1065692 for ; Fri, 26 Jun 2009 20:03:33 +0000 (UTC) (envelope-from milu@dat.pl) Received: from jab.dat.pl (dat.pl [80.51.155.34]) by mx1.freebsd.org (Postfix) with ESMTP id 5577F8FC2B for ; Fri, 26 Jun 2009 20:03:32 +0000 (UTC) (envelope-from milu@dat.pl) Received: from localhost (jsrv.dat.pl [127.0.0.1]) by jab.dat.pl (Postfix) with ESMTP id 1F9EBAE for ; Fri, 26 Jun 2009 22:03:31 +0200 (CEST) X-Virus-Scanned: amavisd-new at dat.pl Received: from jab.dat.pl ([127.0.0.1]) by localhost (jab.dat.pl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id RIVq2yXN7Avk for ; Fri, 26 Jun 2009 22:03:28 +0200 (CEST) Received: from snifi.localnet (dku152.neoplus.adsl.tpnet.pl [83.24.24.152]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by jab.dat.pl (Postfix) with ESMTPSA id 2AB9F3C for ; Fri, 26 Jun 2009 22:03:28 +0200 (CEST) From: Maciej Milewski To: freebsd-questions@freebsd.org Date: Fri, 26 Jun 2009 22:03:24 +0200 User-Agent: KMail/1.11.4 (Linux/2.6.30-ARCH; KDE/4.2.4; x86_64; ; ) References: <12460400390643.1842379727.fomin@pisem.net> <4A45213E.3070705@beanfield.com> In-Reply-To: <4A45213E.3070705@beanfield.com> MIME-Version: 1.0 Content-Disposition: inline Message-Id: <200906262203.24969.milu@dat.pl> Content-Type: Text/Plain; charset="iso-8859-2" Content-Transfer-Encoding: quoted-printable 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 20:03:34 -0000 Dnia pi=B1tek 26 czerwiec 2009 o 21:27:58 Brent Bloxam napisa=B3(a): > 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 > (http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig- building.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` =46rom /usr/src/Makefile: # kernel - buildkernel + installkernel. This shouldtn't be the main problem. You should look for full log from kernel building. f.ex. run: cd /usr/src; make buildkernel | tee kernel_compilation.log and search in this log for an error in this log. Cheers, Maciej Milewski