From owner-freebsd-current@FreeBSD.ORG Fri Oct 13 18:10:12 2006 Return-Path: X-Original-To: freebsd-current@freebsd.org Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2C6016A47E for ; Fri, 13 Oct 2006 18:10:12 +0000 (UTC) (envelope-from swhetzel@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.172]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6FBE43DA1 for ; Fri, 13 Oct 2006 18:09:09 +0000 (GMT) (envelope-from swhetzel@gmail.com) Received: by ug-out-1314.google.com with SMTP id m2so459991uge for ; Fri, 13 Oct 2006 11:09:08 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=fFtlqDj6rjQcK/hSTUh3nSppTjeiFaWseQK82fmyKGgrw48HtJ0JdVh7XM5DjoAixeIO91VfGxgZYW+ubG0096uy4JWkTW38T2kLMgYmMoZ9EYaGoR8t2t2HknMJ8I1LpO7QB4FrFiGzYLuGdjgZP4oMFq5jN7ZIAUdQ3M6ldUQ= Received: by 10.66.242.20 with SMTP id p20mr4656453ugh; Fri, 13 Oct 2006 11:09:08 -0700 (PDT) Received: by 10.67.86.8 with HTTP; Fri, 13 Oct 2006 11:09:08 -0700 (PDT) Message-ID: <790a9fff0610131109i86a4010pdb8dc0392f6fe41d@mail.gmail.com> Date: Fri, 13 Oct 2006 13:09:08 -0500 From: "Scot Hetzel" To: "fulan Peng" In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20061013151728.GA41884@dan.emsphone.com> Cc: freebsd-current@freebsd.org Subject: Re: Please help to forward port 80 to 8800 with ipfw X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Oct 2006 18:10:12 -0000 On 10/13/06, fulan Peng wrote: > After make LINT;make cleandepend;make depend;make; make install, I > Please help me to get the new LINT kernel to work. Were you executing these commands from /usr/src/sys/i386/conf? If you where, then this will not build a LINT kernel, all it does is create the LINT kernel configuration file in /usr/src/sys/i386/conf. What you need to do is make a copy of GENERIC, and then modify that file to add the options you need. cd /usr/src/sys/i386/conf cp GENERIC MyKernel cd /usr/src make buildkernel KERNCONF=MyKernel make installkernel KERNCONF=MyKernel Scot