From owner-freebsd-current@FreeBSD.ORG Mon Jan 17 14:42:25 2005 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E959C16A4CE for ; Mon, 17 Jan 2005 14:42:25 +0000 (GMT) Received: from mail-gw1.york.ac.uk (mail-gw1.york.ac.uk [144.32.128.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB09E43D48 for ; Mon, 17 Jan 2005 14:42:24 +0000 (GMT) (envelope-from gavin.atkinson@ury.york.ac.uk) Received: from buffy.york.ac.uk (buffy.york.ac.uk [144.32.226.160]) by mail-gw1.york.ac.uk (8.12.10/8.12.10) with ESMTP id j0HEgK9F003005; Mon, 17 Jan 2005 14:42:20 GMT Received: from buffy.york.ac.uk (localhost [127.0.0.1]) by buffy.york.ac.uk (8.13.1/8.13.1) with ESMTP id j0HEgKkj011495; Mon, 17 Jan 2005 14:42:20 GMT (envelope-from gavin.atkinson@ury.york.ac.uk) Received: (from ga9@localhost) by buffy.york.ac.uk (8.13.1/8.13.1/Submit) id j0HEgJlI011494; Mon, 17 Jan 2005 14:42:19 GMT (envelope-from gavin.atkinson@ury.york.ac.uk) X-Authentication-Warning: buffy.york.ac.uk: ga9 set sender to gavin.atkinson@ury.york.ac.uk using -f From: Gavin Atkinson To: Kris Maglione In-Reply-To: <41E984AB.7060205@comcast.net> References: <41E984AB.7060205@comcast.net> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Mon, 17 Jan 2005 14:42:19 +0000 Message-Id: <1105972939.10350.25.camel@buffy.york.ac.uk> Mime-Version: 1.0 X-Mailer: Evolution 2.0.3 FreeBSD GNOME Team Port X-York-MailScanner: Found to be clean X-York-MailScanner-From: gavin.atkinson@ury.york.ac.uk cc: freebsd-current@freebsd.org Subject: Re: Laptop won't boot -CURRENT after 8/04 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jan 2005 14:42:26 -0000 On Sat, 2005-01-15 at 16:01 -0500, Kris Maglione wrote: > I am in the process of narrowing down the exact date that it stops > booting, but my laptop won't boot any stable past an early BETA of 5.3 > and it won't boot with -CURRENT from sometime in late 8/04. The latest > date I tried was 1/14/05, I believe. The boot stops after detecting acd0 > (cdrw/dvd-rom). In verbose mode, it stops at: > GEOM: Configure ad0s1 start ... length ... end ... > GEOM: Configure ad0s2[a-f] start ... length ... end ... > > The laptop doesn't have a serial port, and I've been testing with a > FreesBIE CD, since the laptop has a slow HD, so I can't post the entire > dmesg, though I can type out anything important. Hanging here often relates to floppy drive or floppy disk related issues. Late August corresponds to the GEOMification of the floppy device. Try setting debug.fdc.debugflags=255 from the loader, then posting the bits of the dmesg relating to the floppy drive. If it looks like it is getting stuck in the floppy probe, try applying the patch at http://www.devrandom.co.uk/freebsd/fdc_debug.c to an up-to-date current tree and replying with the output. > Can someone post an easy way to find all CVS changes between two dates? > That would be extremely helpful in narrowing the source of the problem. It's quite easy if you have a local CVS repository. (It should also be possible against the FreeBSD anoncvs server). Something like the following: cd /var/tmp cvs co src/sys cvs -q diff -u -D 2003-10-20 -D 2003-11-20 src/sys Will check out the current source then compare all files within src/sys between October 20th and November 20th. Gavin