From owner-freebsd-amd64@FreeBSD.ORG Tue Dec 6 07:54:08 2011 Return-Path: Delivered-To: freebsd-amd64@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 37432106564A for ; Tue, 6 Dec 2011 07:54:08 +0000 (UTC) (envelope-from tomdean@speakeasy.org) Received: from asbnvacz-mailrelay01.megapath.net (asbnvacz-mailrelay01.megapath.net [207.145.128.243]) by mx1.freebsd.org (Postfix) with ESMTP id 07C388FC14 for ; Tue, 6 Dec 2011 07:54:07 +0000 (UTC) Received: from mail2.sea5.speakeasy.net (mail2.sea5.speakeasy.net [69.17.117.41]) by asbnvacz-mailrelay01.megapath.net (Postfix) with ESMTP id 2E0BDA7134F for ; Tue, 6 Dec 2011 02:54:07 -0500 (EST) Received: (qmail 13723 invoked from network); 6 Dec 2011 07:54:06 -0000 Received: by simscan 1.4.0 ppid: 27191, pid: 22204, t: 0.2869s scanners: clamav: 0.88.2/m:52/d:10739 spam: 3.0.4 Received: from 24-113-112-30.wavecable.com (HELO [192.168.2.2]) (tomdean@[24.113.112.30]) (envelope-sender ) by mail2.sea5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 6 Dec 2011 07:54:06 -0000 From: "Thomas D. Dean" To: freebsd-amd64@FreeBSD.org In-Reply-To: <1323157033.14453.29.camel@asus> References: <1323072034.14453.16.camel@asus> <1323157033.14453.29.camel@asus> Content-Type: text/plain; charset="UTF-8" Organization: Home Date: Mon, 05 Dec 2011 23:54:05 -0800 Message-ID: <1323158045.14453.31.camel@asus> Mime-Version: 1.0 X-Mailer: Evolution 2.28.3 Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on mail2.sea5 X-Spam-Level: * X-Spam-Status: No, score=1.6 required=8.0 tests=BAYES_50 autolearn=disabled version=3.0.4 Cc: Subject: Re: Install Problems on ASUS P9X79 GPT - SOLVED X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: tomdean@speakeasy.org List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Dec 2011 07:54:08 -0000 On Mon, 2011-12-05 at 23:37 -0800, Thomas D. Dean wrote: > On Mon, 2011-12-05 at 00:00 -0800, Thomas D. Dean wrote: > > This can be included in grub by booting Ubuntu, in my case, and creating a file > /etc/grub.d/11_freebsd: > > #!/bin/sh > exec tail -n +3 $0 > # This file provides an easy way to add custom menu entries. Simply type the > # menu entries you want to add after this comment. Be careful not to change > # the 'exec tail' line above. > menuentry "FreeBSD 9.0 (RC2)" { > insmod part_gpt > insmod ufs2 > set root='(hd1,gpt4)' > echo Loading kernel of FreeBSD kernel ... > kfreebsd /boot/kernel/kernel > kfreebsd_loadenv /boot/device.hints > set kFreeBSD.vfs.root.mountfrom=ufs:/dev/ad1p4 > set kFreeBSD.vfs.root.mountfrom.options=rw > } > And then, use update-grub. Sorry, I stopped short... tomdean