svn commit: r245991 - stable/8/sys/boot/sparc64/boot1

Marius Strobl marius at FreeBSD.org
Sun Jan 27 17:33:29 UTC 2013


Author: marius
Date: Sun Jan 27 17:33:28 2013
New Revision: 245991
URL: http://svnweb.freebsd.org/changeset/base/245991

Log:
  MFC: r244307
  
  Restore pre-r234898 (MFC'ed to stable/9 in r236077) printing of boot loader
  and path.

Modified:
  stable/8/sys/boot/sparc64/boot1/boot1.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/boot/   (props changed)

Modified: stable/8/sys/boot/sparc64/boot1/boot1.c
==============================================================================
--- stable/8/sys/boot/sparc64/boot1/boot1.c	Sun Jan 27 17:33:22 2013	(r245990)
+++ stable/8/sys/boot/sparc64/boot1/boot1.c	Sun Jan 27 17:33:28 2013	(r245991)
@@ -340,11 +340,11 @@ main(int ac, char **av)
 	}
 
 #ifdef ZFSBOOT
-	printf(" \n>> FreeBSD/sparc64 ZFS boot block\n    Boot path:   %s\n",
+	printf(" \n>> FreeBSD/sparc64 ZFS boot block\n   Boot path:   %s\n",
 	    bootpath);
 #else
-	printf(" \n>> FreeBSD/sparc64 boot block\n    Boot path:   %s\n"
-	    "   Boot loader: %s\n", "", bootpath, path);
+	printf(" \n>> FreeBSD/sparc64 boot block\n   Boot path:   %s\n"
+	    "   Boot loader: %s\n", bootpath, path);
 #endif
 
 	if (mount(bootpath) == -1)


More information about the svn-src-all mailing list