From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1X2LuN-0005tu-VF for mharc-grub-devel@gnu.org; Wed, 02 Jul 2014 10:53:15 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51585) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X2LuG-0005oM-9X for grub-devel@gnu.org; Wed, 02 Jul 2014 10:53:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X2LuA-0004c8-AZ for grub-devel@gnu.org; Wed, 02 Jul 2014 10:53:08 -0400 Received: from mail-wg0-x233.google.com ([2a00:1450:400c:c00::233]:47922) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X2LuA-0004br-3Y for grub-devel@gnu.org; Wed, 02 Jul 2014 10:53:02 -0400 Received: by mail-wg0-f51.google.com with SMTP id x12so11110099wgg.34 for ; Wed, 02 Jul 2014 07:52:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=berentweb.com; s=google; h=date:from:to:subject:message-id:in-reply-to:references:mime-version :content-type:content-transfer-encoding; bh=BDlcim1oYFlQdSPiIomnPf+CV5ynehFhlgvyJ8shjUw=; b=Q/68UkUUOg4ISu04ET4IZmUAjuuWVzBEpeRdNyA/AHmw0f4xQVcvUEqPcRMfpDefGo bMIhuPBAMWbzulj3M2OqJFyxLEr8MY8Rm8LOL7MW5GXAVEI3WpcZUYnHg6xE1DG6aE8r Io3+Aj1xeFosNTZpgWTqPSsyLO6/wSWVLJ0tk= 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:in-reply-to :references:mime-version:content-type:content-transfer-encoding; bh=BDlcim1oYFlQdSPiIomnPf+CV5ynehFhlgvyJ8shjUw=; b=aV6xMHCNuWOFLHibxSCqsy6NsXb/hLw4zsd1z8hH+bidsOvoa9y/azUQLi/LEAx+PT nNxikhpTUJTxbkfJRS9s91KVeIPDZfNY3h+WTp80kNCr6laSPa9WBJUdiSNtGpUJBhkd HhgzRAVUe/GsjaaCBgmO8Ugwc2/CpkolhNxxsBIo5kAi0AwdgaOJcUHYm5PqnIZinCw8 rkDUqqN6TsOJhE+r7g+aD9X+BgfNOT0BBz+lc0vPXxKQ60TmMmK9IVYQj3LXAlOEesYW khrHibNXrzpwvle7JEG46JpVooYsa4IHSgqnhN4XwLVQ0dpz4Mb8v6naqKadtAJd/xA4 eVOg== X-Gm-Message-State: ALoCoQlfnArQMtwg/zYjbnPEj25oCkCTqVUIACPI4U0uIYqqbhrVYfQO+Z1aHzaOlH6P4Tl8kjff X-Received: by 10.180.8.10 with SMTP id n10mr11213713wia.41.1404312778026; Wed, 02 Jul 2014 07:52:58 -0700 (PDT) Received: from rsbsd.rsb ([83.66.220.72]) by mx.google.com with ESMTPSA id ey16sm55968620wid.14.2014.07.02.07.52.56 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Wed, 02 Jul 2014 07:52:57 -0700 (PDT) Date: Wed, 2 Jul 2014 17:52:54 +0300 From: Beeblebrox To: grub-devel@gnu.org Subject: Re: Chainloadig from grub2 to isolinux Message-ID: <20140702175254.5bc1b2ab@rsbsd.rsb> In-Reply-To: <20140702163755.50be186b@rsbsd.rsb> References: <20140702124650.683dd1a1@rsbsd.rsb> <20140702163755.50be186b@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::233 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: Wed, 02 Jul 2014 14:53:14 -0000 I got it partially working. The background image changes to Debian, but it displays "press any key to continue.." then drops back to the main Grub menu. So what am I doing wrong here? menuentry "Debian-Jesse-i386-lxde" --class gnu-linux --class gnu --class os {=20 set thtp=3D"http,192.168.2.100" set isofile=3D($thtp)"/pub/tftp/debian/debian-testing-i386-lxde-CD-1.iso" search --set=3Droot --file $isofile loopback loop $isofile set root=3D(loop) syslinux_configfile -i (loop)/isolinux/isolinux.cfg -r (loop) #linux (loop)/install.386/vmlinuz #initrd (loop)/install.386/initrd.gz } Thanks a lot & Regards.