From owner-freebsd-questions@FreeBSD.ORG Tue Aug 12 17:44:53 2008 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 313B21065674 for ; Tue, 12 Aug 2008 17:44:53 +0000 (UTC) (envelope-from sonic2000gr@gmail.com) Received: from fk-out-0910.google.com (fk-out-0910.google.com [209.85.128.187]) by mx1.freebsd.org (Postfix) with ESMTP id BE1A88FC0C for ; Tue, 12 Aug 2008 17:44:52 +0000 (UTC) (envelope-from sonic2000gr@gmail.com) Received: by fk-out-0910.google.com with SMTP id k31so3932533fkk.11 for ; Tue, 12 Aug 2008 10:44:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=u1iAgxvGYEwg2X6mPxcIL7jalOm4mRojymMbfKjUAEA=; b=IsKyjJJdRcIZduAzBNMOVOtwK5kCE+GUFFK3o4o670nR3Oa+ZR7k7A6lyrt+7jlH0P 27uEa1sdKlKPFarz/6Kcpt+C0Mc0i6r/HowyoRJUu+iZ0gJbj+z5YXDo7CKu6RXXSGGF EUAxsmAO5i7qKOiVrImfJxghmmraQS+tg4Kp4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; b=bV1RjGAX1+IpsYEBwtDhbdF0V0ez/d3vJWqXlCLr/UUd92WOM+MD+iA8zEcsDVZxwE D767+LhivuFQT38aWo7sp1gSOK6FH9ucs5/4rxe8q8f5xsQ1Uy4CqkEe1fbyET7aWYLD eJge14M2VJaYiyQ/4t5wRVVt5m2wqShJFkDMk= Received: by 10.180.238.17 with SMTP id l17mr3041891bkh.65.1218563091598; Tue, 12 Aug 2008 10:44:51 -0700 (PDT) Received: from atlantis.dyndns.org ( [85.73.188.96]) by mx.google.com with ESMTPS id 12sm2439580fks.9.2008.08.12.10.44.49 (version=TLSv1/SSLv3 cipher=RC4-MD5); Tue, 12 Aug 2008 10:44:50 -0700 (PDT) Message-ID: <48A1CC10.90309@gmail.com> Date: Tue, 12 Aug 2008 20:44:48 +0300 From: Manolis Kiagias User-Agent: Thunderbird 2.0.0.14 (X11/20080703) MIME-Version: 1.0 To: Bernt Hansson References: <48A1C8A2.1090803@bah.homeip.net> In-Reply-To: <48A1C8A2.1090803@bah.homeip.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: Sound problems 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: Tue, 12 Aug 2008 17:44:53 -0000 Bernt Hansson wrote: > Hello list. > > Realy need some help! > > I can't seem to get snd_hda module to load from /boot/loader.conf > > Loading the module manualy is ok. > > loader.conf > > hw.ata.atapi_dma="1" > atapicam_load="YES" > if_tap_load="YES" > aio_load="YES" > > ############################################################## > ### Sound modules ########################################## > ############################################################## > sound_load="YES" # Digital sound subsystem > > #snd_hda_load="YES" # Intel High Definition Audio (Controller) > Well, it seems the snd_hda_load line is commented out ;) Also you don't need to add sound_load="YES", just by adding snd_hda_load="YES" the generic sound module will be loaded as well. If anything else fails for some weird reason, you can always compile sound support into the kernel. Just add these two lines in your kernel configuration file: device sound device snd_hda rebuild, reboot, done.