From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with archive (Exim 4.43) id 1NTYYo-0004JA-Nz for mharc-grub-devel@gnu.org; Sat, 09 Jan 2010 05:28:46 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NTYYm-0004Ii-1t for grub-devel@gnu.org; Sat, 09 Jan 2010 05:28:44 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NTYYf-0004IB-Qm for grub-devel@gnu.org; Sat, 09 Jan 2010 05:28:42 -0500 Received: from [199.232.76.173] (port=60558 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NTYYf-0004I8-Kk for grub-devel@gnu.org; Sat, 09 Jan 2010 05:28:37 -0500 Received: from mail-yw0-f177.google.com ([209.85.211.177]:64042) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NTYYf-00089y-Dv for grub-devel@gnu.org; Sat, 09 Jan 2010 05:28:37 -0500 Received: by ywh7 with SMTP id 7so11970123ywh.24 for ; Sat, 09 Jan 2010 02:28:36 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:subject :message-id:x-mailer:mime-version:content-type :content-transfer-encoding; bh=E1g2bFGkG8VOjWt6chP54oYpjPlPtloRtgxNClTPqoQ=; b=DuDggV2JEzsn9QgL5tNyW9JlpE5HS9uzY4HiBrInp4WZsN/1QvvCSSF62TjHUV/RQw QfClsci/XQd93MycCztmwykyZ21E2WUq/kUhv7+jCT6fxAP3dHxDjdUj4I8A5NbkW/2Z H8l4CeXaXrMAd28eoTyDvARn/MZ06qBZdksGo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:subject:message-id:x-mailer:mime-version:content-type :content-transfer-encoding; b=dsgfqqWZ7j56hZG5xA1HZThab9z7kSsFUK2jC4EVtqNF1bmcDDyUhSby6PGlxN5kg/ wl41GcgXsC0QRTPYVgGXAl8v26ruJkOYd6t6ufkc7Kc6imFrXyyUVl4+L7OQ+CXNXey0 l8NBTa/eMFngGaFucBq093j/7oF90FKgz9FWg= Received: by 10.150.127.4 with SMTP id z4mr1651500ybc.37.1263032916491; Sat, 09 Jan 2010 02:28:36 -0800 (PST) Received: from shiva.selfip.org ([115.187.37.54]) by mx.google.com with ESMTPS id 8sm8302500ywg.34.2010.01.09.02.28.33 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sat, 09 Jan 2010 02:28:35 -0800 (PST) Date: Sat, 9 Jan 2010 15:50:32 +0530 From: "J. Bakshi" To: grub-devel@gnu.org Message-ID: <20100109155032.762b3bf3@shiva.selfip.org> X-Mailer: Claws Mail 3.7.3 (GTK+ 2.18.3; i486-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) Subject: gfxmenu not working in debian testing ( aka squeeze ) X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.5 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: Sat, 09 Jan 2010 10:28:44 -0000 Hello list, I have already clarified ( and fell very sorry ) that grub 1.98 in not in lenny but in testing squeeze. I gave it a try to modifying grub2.cfg as ` ` ` set gfxmode=640x480 insmod biosdisk insmod pc insmod font insmod vbe insmod gfxterm insmod videotest insmod tga insmod png insmod gfxmenu set menuviewer="gfxmenu" set theme="/boot/grub/themes/winter/theme.txt" ### BEGIN /etc/grub.d/10_linux ### menuentry "Debian GNU/Linux, with Linux 2.6.31.vesa" { insmod reiserfs set root=(hd0,3) search --no-floppy --fs-uuid --set 291bf7b2-ae4a-4de9-8892-05caca7c0950 linux /boot/vmlinuz-2.6.31.vesa root=/dev/hda3 ro vga=792 quiet } menuentry "Debian GNU/Linux, with Linux 2.6.31.vesa (recovery mode)" { insmod reiserfs set root=(hd0,3) search --no-floppy --fs-uuid --set 291bf7b2-ae4a-4de9-8892-05caca7c0950 linux /boot/vmlinuz-2.6.31.vesa root=/dev/hda3 ro single } ` ` ` And finally did cp -Rvf GRUBtheme/ themes/ After restarting the machine I get the same old grub, no menu :-( Have I missed something in my config or the testing branch is still no ready to support it ? Thanks