From owner-freebsd-amd64@FreeBSD.ORG Sun Aug 29 04:26:42 2004 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F18F116A4CF for ; Sun, 29 Aug 2004 04:26:41 +0000 (GMT) Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by mx1.FreeBSD.org (Postfix) with SMTP id 32A6A43D5D for ; Sun, 29 Aug 2004 04:26:41 +0000 (GMT) (envelope-from iedowse@maths.tcd.ie) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 29 Aug 2004 05:26:40 +0100 (BST) To: Sean McNeil In-Reply-To: Your message of "Sat, 28 Aug 2004 21:12:15 PDT." <1093752734.69450.2.camel@server.mcneil.com> Date: Sun, 29 Aug 2004 05:26:39 +0100 From: Ian Dowse Message-ID: <200408290526.aa74478@salmon.maths.tcd.ie> cc: freebsd-amd64@freebsd.org Subject: Re: turning on kernel modules now? X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Aug 2004 04:26:42 -0000 In message <1093752734.69450.2.camel@server.mcneil.com>, Sean McNeil writes: >I saw the great news about pre-loading kernel modules now working. This >is fantastic. Does this mean that the sound drivers will become kernel >loadable modules now? I don't know if there's a good reason why sound modules are not built on amd64 at the moment. They do build fine if enabled, and at least snd_via8233 works here (both preloaded and kldloaded). I suppose there might be amd64-specific problems with some of the other drivers. To enable building the sound modules on amd64 by default, just apply the following patch to /usr/src/sys/modules/Makefile. Ian Index: Makefile =================================================================== RCS file: /dump/FreeBSD-CVS/src/sys/modules/Makefile,v retrieving revision 1.394 diff -u -r1.394 Makefile --- Makefile 18 Aug 2004 11:59:28 -0000 1.394 +++ Makefile 29 Aug 2004 04:15:30 -0000 @@ -378,6 +378,7 @@ _drm= drm _io= io #_ndis= ndis +_sound= sound .endif .if ${MACHINE_ARCH} == "ia64"