Date: Tue, 27 Mar 2018 17:37:08 +0000 (UTC) From: Eugene Grosbein <eugen@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r331630 - head/stand/i386/zfsboot Message-ID: <201803271737.w2RHb8gI064902@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: eugen Date: Tue Mar 27 17:37:08 2018 New Revision: 331630 URL: https://svnweb.freebsd.org/changeset/base/331630 Log: Fix instructions in the zfsboot manual page. zfsloader(8) fails to probe a slice containing ZFS pool if its second sector contains traces of BSD label (DISKMAGIC == 0x82564557). Fix manual page to show working example erasing such traces. PR: 226714 Approved by: avg (mentor) MFC after: 3 days Modified: head/stand/i386/zfsboot/zfsboot.8 Modified: head/stand/i386/zfsboot/zfsboot.8 ============================================================================== --- head/stand/i386/zfsboot/zfsboot.8 Tue Mar 27 17:35:15 2018 (r331629) +++ head/stand/i386/zfsboot/zfsboot.8 Tue Mar 27 17:37:08 2018 (r331630) @@ -24,7 +24,7 @@ .\" .\" $FreeBSD$ .\" -.Dd September 15, 2014 +.Dd March 27, 2018 .Dt ZFSBOOT 8 .Os .Sh NAME @@ -99,9 +99,9 @@ can also be installed in an MBR slice: .Bd -literal -offset indent gpart create -s mbr ada0 gpart add -t freebsd ada0 -gpart create -s BSD ada0s1 gpart bootcode -b /boot/boot0 ada0 gpart set -a active -i 1 ada0 +dd if=/dev/zero of=/dev/ada0s1 count=2 dd if=/boot/zfsboot of=/dev/ada0s1 count=1 dd if=/boot/zfsboot of=/dev/ada0s1 iseek=1 oseek=1024 .Ed
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803271737.w2RHb8gI064902>