From owner-freebsd-stable@FreeBSD.ORG Thu Sep 4 04:59:34 2003 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 70CD816A4BF for ; Thu, 4 Sep 2003 04:59:34 -0700 (PDT) Received: from smtp02.syd.iprimus.net.au (smtp02.syd.iprimus.net.au [210.50.76.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85F7C43FA3 for ; Thu, 4 Sep 2003 04:59:33 -0700 (PDT) (envelope-from tim@robbins.dropbear.id.au) Received: from mail.robbins.dropbear.id.au (210.50.253.199) by smtp02.syd.iprimus.net.au (7.0.018) id 3F4C083E00174D2B; Thu, 4 Sep 2003 21:59:28 +1000 Received: by mail.robbins.dropbear.id.au (Postfix, from userid 1000) id D3C06C69A; Thu, 4 Sep 2003 21:59:16 +1000 (EST) Date: Thu, 4 Sep 2003 21:59:16 +1000 From: Tim Robbins To: Daniel Message-ID: <20030904115916.GA8814@dilbert.robbins.dropbear.id.au> References: <3F56C369.22546.35BCCF5@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3F56C369.22546.35BCCF5@localhost> User-Agent: Mutt/1.4.1i cc: freebsd-stable@freebsd.org Subject: Re: buildkernel errors with "options SMBFS" X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Sep 2003 11:59:34 -0000 On Thu, Sep 04, 2003 at 04:45:29AM -0400, Daniel wrote: > Hi all... another lurker and first-time poster... if I forget something relevant please let me > know... > > Anyway, have tried to make a kernel on two different machines under the latest (as of > 04:37AM 4 September 2003 -0500 (EDT)) 4.9-PRERELEASE **AND** 5.1-p2 and get > the error message as shown below. I am including (at the end) the uname-a from both > of the systems. Each of them will compile this exact same kernel exactly right if I leave > the "options SMBFS" line out of the kernel config file. I will happily post those files if you > deem them relevant but I am not now for space reasons. [...] Make sure you have all of the necessary options in your kernel config file. For smbfs, you need these: options SMBFS options NETSMB options NETSMBCRYPTO options LIBMCHAIN options LIBICONV ... or you can just use kldload to load the right modules (smbfs.ko, libiconv.ko, libmchain.ko) - kldload smbfs will drag them all in automatically. Tim