From owner-freebsd-fs@FreeBSD.ORG Tue May 19 14:26:09 2009 Return-Path: Delivered-To: freebsd-fs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 478021065670 for ; Tue, 19 May 2009 14:26:09 +0000 (UTC) (envelope-from artis.caune@gmail.com) Received: from mu-out-0910.google.com (mu-out-0910.google.com [209.85.134.184]) by mx1.freebsd.org (Postfix) with ESMTP id CB1978FC08 for ; Tue, 19 May 2009 14:26:08 +0000 (UTC) (envelope-from artis.caune@gmail.com) Received: by mu-out-0910.google.com with SMTP id w9so1761176mue.3 for ; Tue, 19 May 2009 07:26:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type:content-transfer-encoding; bh=HPGanft1DGwFpJxkun961afjOYAMKXrMUVSNoauZRfg=; b=xzWWm8QOIjkCMKqZvjOHWTYNTjQ18M8xCW2/URXSbBQinGZoxNp1hEinZDxMjrJwRg ze1wkWgbjPMvMexLL1F1/AjkSUdF7rD20UV1Hjb3ojNQDP3hV+3ircV8h957J6EBQEKW Hwb/oUBre6hJM4zZyhcA+/g0CS2fSJhj+cbwM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=ZJJS3CQsJ+YCbKf5eogXMN+qnmN32qz+FPy05JCjdfE4kVvxZolqNLyki/Y2v8RHSd Cg2GtrIwuWplGO7SZza+0VoKt5gPU94+1xu7uYsIuiWfZqFA3ZEiMzzfrTk4ELPXdqrI waJLcrxY5E9FVHPa9A0AMyI+m3tMmXlwUS5nA= MIME-Version: 1.0 Received: by 10.102.247.10 with SMTP id u10mr50512muh.76.1242741935306; Tue, 19 May 2009 07:05:35 -0700 (PDT) Date: Tue, 19 May 2009 17:05:35 +0300 Message-ID: <9e20d71e0905190705re842e2fl3af1220a658ca8ae@mail.gmail.com> From: Artis Caune To: freebsd-fs@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Subject: booting from GPT X-BeenThere: freebsd-fs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Filesystems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 May 2009 14:26:09 -0000 Hi, I'm playing with GPT on amd64/stable7 (r192123). My workstation (no-name, Core2duo), IBM T60 laptop and IBM x3650/x3550 servers are booting fine, but Intel Entry Server (SE7230NH1-E) can not boot: "No bootable device -- insert boot disk and press any key" kernel is compiled with: # Default partitioning schemes -options GEOM_BSD -options GEOM_MBR +options GEOM_PART_BSD +options GEOM_PART_MBR and bootable install usb is created with: # dev="da0" # gpart create -s GPT ${dev} # gpart bootcode -b /boot/pmbr ${dev} # gpart add -b 34 -s 128 -t freebsd-boot ${dev} # gpart bootcode -p /boot/gptboot -i 1 ${dev} # gpart add -b 162 -s $(gpart show ${dev} |grep 'free -' |awk '{print $2}') -t freebsd-ufs ${dev} # newfs -n ${dev}p2 Maybe box is too old? -- Artis Caune Everything should be made as simple as possible, but not simpler.