From owner-freebsd-questions Thu Feb 8 15:12:38 1996 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id PAA06124 for questions-outgoing; Thu, 8 Feb 1996 15:12:38 -0800 (PST) Received: from cy.com (root@jake.atlwin.com [155.229.56.8]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id PAA06117 for ; Thu, 8 Feb 1996 15:12:32 -0800 (PST) Received: from jake.atlwin.com ([155.229.56.47]) by cy.com (8.6.12/8.6.4) with SMTP id TAA16915; Thu, 8 Feb 1996 19:09:12 -0500 Date: Thu, 8 Feb 1996 19:09:12 -0500 Message-Id: <199602090009.TAA16915@cy.com> X-Sender: tkelley@cy.com X-Mailer: Windows Eudora Light Version 1.5.2 Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" To: "John Butler / Network Ops." , questions@freebsd.org From: "Tim M. Kelley" Subject: Re: ATAPI CDROM Sender: owner-questions@freebsd.org Precedence: bulk At 05:54 PM 2/7/96, John Butler / Network Ops. wrote: >I am having difficulty with freebsd 2.1 and an ATAPI IDE cdrom drive. The >CDROM drive is the second device on a regular on-board IDE controller. We >have no problem running the floppy and actually seeing the cd mount as the >second device on wd0. Once the install from the CD is done and we boot >from the hard drive --which is the first device on wd0 -- the cd is not >found. After lots of investigation, we looked at the GENERIC source file >(usr/src/sys/i386/conf/GENERIC) and saw that the ATAPI option is commented >out. Is there a way for us to compile the kernel with an uncommented-out >ATAPI line in GENERIC or is there a way to do it using the install utility >from the floppy? We appreciate your support! THANKS! > > I submitted the following as a FAQ to the documentation team. It doesn't appear to have made it yet into the FAQ on the web pages (or if indeed it ever will). It does answer your question though. Frequently Asked Question (Hardware Compatibility or Misc.) How do I get FreeBSD to recognize my ATAPI CDROM after installation? Read the directions under building a custom kernel. You will need to modify the configuration file and build a custom kernel with these changes. In the configuration, search for the lines: #options ATAPI #Enable ATAPI support for IDE bus #device wcd0 #IDE CD-ROM Change them so they read: options ATAPI #Enable ATAPI support for IDE bus device wcd0 #IDE CD-ROM If the CDROM is on the primary IDE channel, the above configuration should work. If the CDROM is on the seconary IDE channel, change the device line to read: device wcd1 #IDE CD-ROM