From owner-freebsd-sparc64@FreeBSD.ORG Sun Feb 12 13:20:03 2012 Return-Path: Delivered-To: freebsd-sparc64@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 320C9106566C for ; Sun, 12 Feb 2012 13:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1FD9F8FC0C for ; Sun, 12 Feb 2012 13:20:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1CDK3vD027571 for ; Sun, 12 Feb 2012 13:20:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1CDK2QV027570; Sun, 12 Feb 2012 13:20:02 GMT (envelope-from gnats) Date: Sun, 12 Feb 2012 13:20:02 GMT Message-Id: <201202121320.q1CDK2QV027570@freefall.freebsd.org> To: freebsd-sparc64@FreeBSD.org From: Marius Strobl Cc: Subject: Re: sparc64/165025: [PATCH] zfsboot support for sparc64 X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Marius Strobl List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Feb 2012 13:20:03 -0000 The following reply was made to PR sparc64/165025; it has been noted by GNATS. From: Marius Strobl To: bug-followup@FreeBSD.org, gavin.mu@gmail.com Cc: Subject: Re: sparc64/165025: [PATCH] zfsboot support for sparc64 Date: Sun, 12 Feb 2012 14:16:19 +0100 > Known Limitations: > 1. only zpool on a whole disk is supported, zfs boot from zpool in VTOC8 partitions may not work. Uhm, are you sure you didn't have (the remnants) of a VTOC label on the disk? I'd expect the firmware to refuse to boot from a disk not having one. > 2. boot from mirror/raidz is not supported due to limited dev environment. Could you also tackle these remaining bits or at least describe what it would take to support booting from a zpool in a VTOC label, mirror and raidz? > > >How-To-Repeat: > NA. > >Fix: > generic steps: > 1. build zfsboot and zfsloader > 2. create zpool on your disk > # zpool create tank /dev/ > 3. export the zpool > # zpool export tank > 4. install zfsboot > # dd if=boot1 of=/dev/ bs=512 skip=1 oseek=1 conv=notrunc Assuming there is a VTOC8 label, this could also be done using `gpart -b`, no? > 5. install zfsloader to ZFS Book Block location > # dd if=zfsloader of=/dev/ bs=512 oseek=1024 conv=notrunc I think to vaguely remember there being a zfs command/way of writing a loader to that 3.5MB boot block area following the uberblock. Do you know what it is? In any case, nice work so far! Marius