From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1XiS9l-00079M-4m for mharc-grub-devel@gnu.org; Sun, 26 Oct 2014 14:03:09 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33190) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XiS9e-00077a-92 for grub-devel@gnu.org; Sun, 26 Oct 2014 14:03:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XiS9Y-0004KC-9x for grub-devel@gnu.org; Sun, 26 Oct 2014 14:03:02 -0400 Received: from mail-wg0-x22f.google.com ([2a00:1450:400c:c00::22f]:63511) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XiS9Y-0004K4-2Y for grub-devel@gnu.org; Sun, 26 Oct 2014 14:02:56 -0400 Received: by mail-wg0-f47.google.com with SMTP id a1so471834wgh.18 for ; Sun, 26 Oct 2014 11:02:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=berentweb.com; s=google; h=date:from:to:subject:message-id:mime-version:content-type :content-transfer-encoding; bh=xPiFsvsvJJWGToolXPQHVggf1goPkW9e7f904uVSpxo=; b=EMKjqdGDVXPdR/uP5ww55OBgVPYreAUtcQ/v4jH2NzsaBKwSI8FTsLW4rYEwYXTtTj xPTi6gCeKSuVipOzw8s90zic0SxzpD2eRENFL8OS4crTp07WdWmr+EEsFzGz5VJSqld0 4uBv3eol4O7hY0LqjacfOjcmGpwiKpZr2/Ofo= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:from:to:subject:message-id:mime-version :content-type:content-transfer-encoding; bh=xPiFsvsvJJWGToolXPQHVggf1goPkW9e7f904uVSpxo=; b=FWCQQvsjc8Er7tI9aUlIUfkS1cXYUDa6nz+QEt9Q1LQ5eb0Xia8bpwIgIzEgiB+PiJ mcc6TNFPmlLB/7JGQlgXMhRtawKJNG/cb547trmwhI5akuCGp7ZgNNMXsugJ8rI3Swl7 h1oIthgTr7zyEUMklEefvxrLY433msemPG4tlf/trlfc1XWLRWxFNLe8atSq8AF1tINv 6h+MApp+XBML+s0WUWcE6vGtY2chRCcv5fXYRlUPW3ba897mpjtK41AGaDnKjQJeKGF6 GL9U8e5Tr959U69Cf3IjFoFUae6vFAXNEibd3O2x2uwMMOxaut4JsCO5PpTVx+lZNfCU XCUQ== X-Gm-Message-State: ALoCoQmbxggzUOYJskvFQW1FpHUR1kD3gXBPulCNIU8ceXxuhGM3CWtYtk4iAIN6SnemN9Z1/6Ae X-Received: by 10.180.182.18 with SMTP id ea18mr16410178wic.32.1414346574363; Sun, 26 Oct 2014 11:02:54 -0700 (PDT) Received: from rsbsd.rsb ([83.66.215.232]) by mx.google.com with ESMTPSA id u8sm9091025wiz.14.2014.10.26.11.02.52 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 26 Oct 2014 11:02:53 -0700 (PDT) Date: Sun, 26 Oct 2014 20:03:00 +0200 From: Beeblebrox To: grub-devel Subject: Grub kfreebsd with pxe & nfs Message-ID: <20141026200300.70fc4099@rsbsd.rsb> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:400c:c00::22f X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: The development of GNU GRUB List-Id: The development of GNU GRUB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Oct 2014 18:03:08 -0000 I have two separate issues involving the {kfreebsd} code in grub.cfg: * First is, code snippet to get mount_root to use NFS V3 instead of V2. The= code for this in FreeBSD's /boot/loader.conf is: {boot-nfsroot-options=3D= =E2=80=9Cnfsv3=E2=80=9D} The comparable grub.cfg code should be as below, but does not work (mount_r= oot hangs for some time, then falls back to V2) {set kfreebsd.boot.nfsroot.options=3D"nfsv3"} * Second issue is, how to over-ride the {option root-path "192.168.2.1:/dat= a/amd64"} code defined by dhcp? This is needed for example when I want to b= oot a i386 version of FreeBSD rather than amd64. As above, this does not wo= rk correctly: {set kfreebsd.vfs.root.mountfrom=3D"nfs:192.168.2.1:/data/amd64/alt_root/pa= th"} Also, which file in the grub code can I look through to get a list of optio= ns supported by the kfreebsd operator? --=20 FreeBSD_amd64_11-Current_RadeonKMS