From owner-freebsd-stable Mon Mar 11 13:10:17 2002 Delivered-To: freebsd-stable@freebsd.org Received: from pt-quorum.com (pt-quorum.com [209.10.167.210]) by hub.freebsd.org (Postfix) with ESMTP id 89C4837B416 for ; Mon, 11 Mar 2002 13:10:11 -0800 (PST) Received: from gw.tex.bogus (d179207.avr.PT.KPNQwest.net [193.126.179.207]) by pt-quorum.com (Postfix) with ESMTP id 07BA7EC18; Mon, 11 Mar 2002 21:04:03 +0000 (WET) Received: by gw.tex.bogus (Postfix, from userid 1001) id 2A26F67E; Mon, 11 Mar 2002 21:09:23 +0000 (WET) Date: Mon, 11 Mar 2002 21:09:23 +0000 From: Nuno Teixeira To: =?iso-8859-15?Q?S=F8ren?= Schmidt Cc: stable@freebsd.org Subject: Re: Request for testers of MFC'd ATA driver take 2. Message-ID: <20020311210923.GB41958@gw.tex.bogus> References: <200203071628.g27GSj421553@freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <200203071628.g27GSj421553@freebsd.dk> User-Agent: Mutt/1.3.27i X-Operating-System: FreeBSD 4.5-STABLE Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Mar 07, 2002 at 05:28:45PM +0100, Søren Schmidt wrote: > > First of I want to thank all those that mailed back reports on > how the first shot of patches worked out, much appreciated! > > Now, I've overworked things and I think I've fixed most if not > all of the problems I've gotten reports on. > > So please, take a look at the new patch set at: > > ftp://freebsd.dk/pub/ATA/ata-diff-stable-2002-0307.gz > and > ftp://freebsd.dk/pub/ATA/ata-tar-stable-2002-0307.gz > > I've divided it up in a small diff file with changes to the > genric files, and then a tarfile with all files related > to the ATA driver, both are relative to /usr/src. > (those that have the first diff installed can just untar > the tar file and will be updated that way). > > Please let me know if this fixes problems you had before > or brings forward new ones, and success stories are as > usual always welcome :) > > Thanks!! > > -Søren > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message Hello to all, I think I found 1 problem related to burncd in DAO mode: What I do: 1. extract audio tracks from cd (19 tracks): dd if=/dev/acd0t1 of=track01 bs=2352 ... dd if=/dev/acd0t19 of=track19 bs=2352 2. burncd: burncd -f /dev/acd1c -s 8 -d -n audio track* fixate The cd is exactly like the original but in some HIFI systems the 1st track gives error and the CD doesn't play. All the tracks except the 1st one are ok. I made a comparison between original and copied cd and I found that are differences on the 1st track: original starts at block 0 and copied cd starts at block 150. ==> ORIGINAL cd: Starting track = 1, ending track = 19, TOC size = 162 bytes track start duration block length type ------------------------------------------------- 1 0:02.00 4:16.45 0 19095 audio 2 4:16.45 3:57.40 19095 17665 audio 3 8:12.10 3:15.12 36760 14487 audio 4 11:25.22 5:21.30 51247 23955 audio 5 16:44.52 4:19.05 75202 19280 audio 6 21:01.57 2:52.10 94482 12760 audio 7 23:51.67 4:47.40 107242 21415 audio 8 28:37.32 3:33.65 128657 15890 audio 9 32:09.22 5:35.15 144547 24990 audio 10 37:42.37 5:45.53 169537 25778 audio 11 43:26.15 2:48.60 195315 12510 audio 12 46:13.00 4:34.05 207825 20405 audio 13 50:45.05 6:06.35 228230 27335 audio 14 56:49.40 3:39.20 255565 16295 audio 15 60:26.60 4:44.40 271860 21190 audio 16 65:09.25 5:07.55 293050 22930 audio 17 70:15.05 3:13.10 315980 14335 audio 18 73:26.15 2:17.15 330315 10140 audio 19 75:41.30 3:30.45 340455 15645 audio 170 79:10.00 - 356100 - - ==> COPIED cd: Starting track = 1, ending track = 19, TOC size = 162 bytes track start duration block length type ------------------------------------------------- 1 0:04.00 4:16.45 150 19095 audio 2 4:18.45 3:57.40 19245 17665 audio 3 8:14.10 3:15.12 36910 14487 audio 4 11:27.22 5:21.30 51397 23955 audio 5 16:46.52 4:19.05 75352 19280 audio 6 21:03.57 2:52.10 94632 12760 audio 7 23:53.67 4:47.40 107392 21415 audio 8 28:39.32 3:33.65 128807 15890 audio 9 32:11.22 5:35.15 144697 24990 audio 10 37:44.37 5:45.53 169687 25778 audio 11 43:28.15 2:48.60 195465 12510 audio 12 46:15.00 4:34.05 207975 20405 audio 13 50:47.05 6:06.35 228380 27335 audio 14 56:51.40 3:39.20 255715 16295 audio 15 60:28.60 4:44.40 272010 21190 audio 16 65:11.25 5:07.55 293200 22930 audio 17 70:17.05 3:13.10 316130 14335 audio 18 73:28.15 2:17.15 330465 10140 audio 19 75:43.30 3:30.45 340605 15645 audio 170 79:12.00 - 356250 - - ==> HIFI cd players: PHILIPS cd 930 (900 series): failed to play first track ARCAM alpha 7: ok but takes some time to play first track ==> CDROMs: No problems ==> CD RECORDER: LG GCE-8160B ==> CDs: BASF 700MB / 80 minutes Did I made a mistake or is really a burncd problem? Thanks very much, -- Nuno Teixeira pt-quorum.com /* PGP Public Key: http://www.pt-quorum.com/pgp/nunoteixeira.asc Fingerprint: AF91 4AC0 85CB 272A 5441 E02F 5D84 ED9D 34D5 9145 */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message