Date: Wed, 8 Oct 2008 21:45:56 +0000 (UTC) From: Marius Strobl <marius@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org Subject: svn commit: r183710 - in stable/7/sys: . boot/sparc64/loader Message-ID: <200810082145.m98LjuRb044033@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marius Date: Wed Oct 8 21:45:56 2008 New Revision: 183710 URL: http://svn.freebsd.org/changeset/base/183710 Log: MFC: r183628 Disable ATAPI DMA as it's once again broken in that it causes data corruption with the on-board AcerLabs M5229 controllers. While at it, remove the pointless "nothing to autoload yet." message. Approved by: re (blackend) Modified: stable/7/sys/ (props changed) stable/7/sys/boot/sparc64/loader/main.c Modified: stable/7/sys/boot/sparc64/loader/main.c ============================================================================== --- stable/7/sys/boot/sparc64/loader/main.c Wed Oct 8 21:10:55 2008 (r183709) +++ stable/7/sys/boot/sparc64/loader/main.c Wed Oct 8 21:45:56 2008 (r183710) @@ -222,7 +222,7 @@ static int sparc64_autoload(void) { - printf("nothing to autoload yet.\n"); + setenv("hw.ata.atapi_dma", "0", 0); return (0); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200810082145.m98LjuRb044033>