svn commit: r230166 - stable/8/sys/boot/i386/zfsboot
Andriy Gapon
avg at FreeBSD.org
Sun Jan 15 21:52:45 UTC 2012
Author: avg
Date: Sun Jan 15 21:52:45 2012
New Revision: 230166
URL: http://svn.freebsd.org/changeset/base/230166
Log:
MFC r228267: zfsboot: print boot.config contents before parsing it
Modified:
stable/8/sys/boot/i386/zfsboot/zfsboot.c
Directory Properties:
stable/8/sys/ (props changed)
stable/8/sys/amd64/include/xen/ (props changed)
stable/8/sys/cddl/contrib/opensolaris/ (props changed)
stable/8/sys/contrib/dev/acpica/ (props changed)
stable/8/sys/contrib/pf/ (props changed)
Modified: stable/8/sys/boot/i386/zfsboot/zfsboot.c
==============================================================================
--- stable/8/sys/boot/i386/zfsboot/zfsboot.c Sun Jan 15 21:51:55 2012 (r230165)
+++ stable/8/sys/boot/i386/zfsboot/zfsboot.c Sun Jan 15 21:52:45 2012 (r230166)
@@ -534,10 +534,10 @@ main(void)
}
if (*cmd) {
- if (parse())
- autoboot = 0;
if (!OPT_CHECK(RBX_QUIET))
printf("%s: %s", PATH_CONFIG, cmd);
+ if (parse())
+ autoboot = 0;
/* Do not process this command twice */
*cmd = 0;
}
More information about the svn-src-all
mailing list