From owner-cvs-src-old@FreeBSD.ORG Mon Jun 27 13:58:42 2011 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BD86E106564A for ; Mon, 27 Jun 2011 13:58:42 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AC8988FC12 for ; Mon, 27 Jun 2011 13:58:42 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id p5RDwger031448 for ; Mon, 27 Jun 2011 13:58:42 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p5RDwgCG031447 for cvs-src-old@freebsd.org; Mon, 27 Jun 2011 13:58:42 GMT (envelope-from jhb@repoman.freebsd.org) Message-Id: <201106271358.p5RDwgCG031447@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jhb@repoman.freebsd.org using -f From: John Baldwin Date: Mon, 27 Jun 2011 13:58:24 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/boot/i386/zfsboot Makefile zfsldr.S X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Jun 2011 13:58:42 -0000 jhb 2011-06-27 13:58:24 UTC FreeBSD src repository Modified files: sys/boot/i386/zfsboot Makefile zfsldr.S Log: SVN rev 223597 on 2011-06-27 13:58:24Z by jhb - Remove the fake BPB from zfsldr. zfsldr doesn't support booting from floppies, so it will not be used as the start of an emulated floppy image on a bootable CD which is what the fake BPB was used for. - Only check that EDD packet mode is available once at the start of zfsldr rather than for each disk sector now that we read data in one sector at a time. As a result, collapse the remaining bits of read up into nread and rename nread to read. - Restore a return at the end of putstr that I removed in the previous revision. Tested by: Henri Hennebert (earlier version) MFC after: 1 week Revision Changes Path 1.13 +1 -1 src/sys/boot/i386/zfsboot/Makefile 1.6 +30 -81 src/sys/boot/i386/zfsboot/zfsldr.S