svn commit: r244307 - head/sys/boot/sparc64/boot1

Marius Strobl marius at FreeBSD.org
Sun Dec 16 20:43:30 UTC 2012


Author: marius
Date: Sun Dec 16 20:43:29 2012
New Revision: 244307
URL: http://svnweb.freebsd.org/changeset/base/244307

Log:
  Restore pre-r234898 printing of boot loader and path.
  
  MFC after:	3 days

Modified:
  head/sys/boot/sparc64/boot1/boot1.c

Modified: head/sys/boot/sparc64/boot1/boot1.c
==============================================================================
--- head/sys/boot/sparc64/boot1/boot1.c	Sun Dec 16 19:51:34 2012	(r244306)
+++ head/sys/boot/sparc64/boot1/boot1.c	Sun Dec 16 20:43:29 2012	(r244307)
@@ -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 (domount(bootpath) == -1)


More information about the svn-src-all mailing list