From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1WrUVg-0002I7-Du for mharc-grub-devel@gnu.org; Mon, 02 Jun 2014 11:50:52 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58529) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WrUVV-00028m-Kz for grub-devel@gnu.org; Mon, 02 Jun 2014 11:50:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WrUVP-0003Cc-2p for grub-devel@gnu.org; Mon, 02 Jun 2014 11:50:41 -0400 Received: from mail-la0-x229.google.com ([2a00:1450:4010:c03::229]:64898) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WrUVO-0003Ba-Ad for grub-devel@gnu.org; Mon, 02 Jun 2014 11:50:34 -0400 Received: by mail-la0-f41.google.com with SMTP id e16so2707787lan.14 for ; Mon, 02 Jun 2014 08:50:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-type:content-transfer-encoding; bh=dSKuYYHIHr+cxqVMkBaDBLMESB6rYTSXxUxyce3erTY=; b=JK3dvkyR+puqwJRlyWanxNM6fY1ZOXDtegnp/EuKjzr1Qnjqw8q/XAEmZPeF/dIRac b9OaKQy2GtauTpsmuPK2mLRWeQs7Wavl8SSaXOHv6NQ6DNWSBit4I54IgGXf8k7JB7lf xm3S/NchM3HYjkvST/qPmDa3Dh53Z20OaY/MgUFRG3LTxdJjAHQ1ZXbjz/ofuSzeZr3e J4H4IkoPoMBUFwbkB8h2AQevVSBhWmJBHpTz6fHeOV9KZv4Y/GfuwFF0fdohqUCavek5 m9gEC9WvawspmpXG+0WtF7OtJHV1MfXyLA54kz6RiQCVNFX4KfqpT0rCRQGx2a0TFExf jbXA== X-Received: by 10.112.134.97 with SMTP id pj1mr28154043lbb.9.1401724233102; Mon, 02 Jun 2014 08:50:33 -0700 (PDT) Received: from opensuse.site (ppp37-190-15-130.pppoe.spdop.ru. [37.190.15.130]) by mx.google.com with ESMTPSA id qx6sm13228401lbb.23.2014.06.02.08.50.32 for (version=SSLv3 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 02 Jun 2014 08:50:32 -0700 (PDT) Date: Mon, 2 Jun 2014 19:50:31 +0400 From: Andrey Borzenkov To: zaphod@berentweb.com Subject: Re: PXE boot over NFS please Message-ID: <20140602195031.5cdd6497@opensuse.site> In-Reply-To: References: <20140602091519.11933ca5@opensuse.site> X-Mailer: Claws Mail 3.9.2 (GTK+ 2.24.22; x86_64-suse-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4010:c03::229 Cc: The development of GNU GRUB 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: Mon, 02 Jun 2014 15:50:48 -0000 В Mon, 2 Jun 2014 18:14:31 +0300 Beeblebrox пишет: > > Grub already supports HTTP. Did you try it? > > > > Not yet. I was planning on getting around to that, but I had wanted to > clarify the "NFS option" first. Can you advise what the syntax is for HTTP > booting the kernel with loopback? Like this for example? > > menuentry 'Ubuntu 13.04.iso' { > set root='http://192.168.2.1/tftp' set root=http,192.168.2.1 > set isofile="ubuntu-13.04.iso" > loopback loop http://192.168.2.1/tftp/$isofile loopback loop0 ($root)/tftp/$isofile > linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=$isofile > noprompt noeject > initrd (loop)/casper/initrd.lz } > > Regards.