From owner-freebsd-doc@FreeBSD.ORG Thu Oct 12 16:48:04 2006 Return-Path: X-Original-To: doc@FreeBSD.org Delivered-To: freebsd-doc@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8EF2A16A4D0 for ; Thu, 12 Oct 2006 16:48:04 +0000 (UTC) (envelope-from el.nadow@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.185]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7AC1243E08 for ; Thu, 12 Oct 2006 16:46:30 +0000 (GMT) (envelope-from el.nadow@gmail.com) Received: by nf-out-0910.google.com with SMTP id n15so1200604nfc for ; Thu, 12 Oct 2006 09:46:10 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type; b=T+KfGQGy4ow+zuqsN+ZBMvEI5yMjfqRLdEVjGRagPi3iApf3LYuj31wAImadeSnyUmRlzDf1AcNMmNvrIJTNSK6rraVX2//1L5kTdUFAbroesRoF6zhaE7uZojkorKS8mbk2z1NB8fvs6aYXAQUpqdDtMQ71mXj7SnAuA4ILuPY= Received: by 10.49.29.3 with SMTP id g3mr5414609nfj; Thu, 12 Oct 2006 09:46:09 -0700 (PDT) Received: by 10.48.210.2 with HTTP; Thu, 12 Oct 2006 09:46:09 -0700 (PDT) Message-ID: Date: Thu, 12 Oct 2006 18:46:09 +0200 From: Nadow To: doc@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: About compiling a new kernel steps X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: el.nadow@gmail.com List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Oct 2006 16:48:04 -0000 Hi, in the handbook Chapter 8 Configuring the FreeBSD Kernel, part 8.3 it says 1. Run config(8)to generate the kernel source code. # /usr/sbin/config *MYKERNEL* 2. Change into the build directory. config(8)will print the name of this directory after being run as above. # cd ../compile/*MYKERNEL* For FreeBSD versions prior to 5.0, use the following form instead: # cd ../../compile/*MYKERNEL* 3. Compile the kernel. # make depend # make 4. Install the new kernel. # make install ------------------------------------ But When I do # /usr/sbin/config *MYKERNEL * The system reminds me to do "make clean depend" before "make depend" but in the third step of the handbook "make clean depend" doesnt appear. I know it works in both ways but I would like to know if it is not better to include the command just in case. Regards Nadow