From owner-freebsd-questions@FreeBSD.ORG Sat Feb 5 15:37:18 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1450616A4CE for ; Sat, 5 Feb 2005 15:37:18 +0000 (GMT) Received: from outbound-mail.lax.untd.com (outbound-mail.lax.untd.com [64.136.28.164]) by mx1.FreeBSD.org (Postfix) with SMTP id A5A4443D31 for ; Sat, 5 Feb 2005 15:37:17 +0000 (GMT) (envelope-from hamsadhvani@netzero.net) Received: from webmail29.lax.untd.com (webmail29.lax.untd.com [10.131.27.169]) by smtpout04.lax.untd.com with SMTP id AABBAK4BJAJSBBS2 ); Sat, 5 Feb 2005 07:37:12 -0800 (PST) X-UNTD-OriginStamp: c5MncO6oi0kX4yQOgHmR5pHmAsWmmmo8KP6m13VhglkLcCOGY46u8YZ3ei27qCXg Received: (from hamsadhvani@netzero.net) by webmail29.lax.untd.com (jqueuemail) id KJ39PAEJ; Sat, 05 Feb 2005 07:36:12 PST Received: from [4.248.73.125] by webmail29.lax.untd.com with HTTP: Sat, 5 Feb 2005 15:35:34 GMT X-Originating-IP: [4.248.73.125] Mime-Version: 1.0 From: "hamsadhvani@netzero.net" Date: Sat, 5 Feb 2005 15:35:34 GMT To: freebsd-questions@freebsd.org X-Mailer: WebMail Version 2.0 Content-Type: text/plain Message-Id: <20050205.073612.27018.35088@webmail29.lax.untd.com> X-ContentStamp: 10:5:1187075769 Subject: Modem not detected in FreeBSD 5.3 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Feb 2005 15:37:18 -0000 I have some problems getting my modem to work on FreeBSD 5.3.It is an internal modem Intel 537EP V9x DF PCI Modem sitting on COM3. Originally the dmesg for the serial ports read: sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 sio0: type 16550A sio1: configured irq 3 not in the bitmap of probed irqs 0 sio1: port may not be enabled. My /boot/device.hints file reads as follows: hint.sio.0.at=isa hint.sio.0.port="0x3F8" hint.sio.0.flags="0x10" hint.sio.0.irq="4" hint.sio.1.at=isa hint.sio.1.disabled="1" hint.sio.1.port="0x2F8" hint.sio.1.irq="3" hint.sio.2.at=isa hint.sio.2.disabled="1" hint.sio.2.port="0x3E8" hint.sio.2.irq="5" hint.sio.3.at=isa hint.sio.3.disabled="1" hint.sio.3.port="0x2E8" hint.sio.3.irq="9" which I modified by commenting the disabled line and adding the following lines. hint.sio.1.flag="0x0" hint.sio.2.flag="0x201" (refered the sio4 manual but I am not sure if these are correct) and then rebuilt and installed the kernel. Still my dmesg read: sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 sio0: type 16550A sio1: configured irq 3 not in the bitmap of probed irqs 0 sio1: port may not be enabled. sio2: configured irq 5 not in the bitmap of probed irqs 0 sio2: port may not be enabled. Thanks.