I just finally finished install Gentoo on my laptop, and got to the reboot step. On reboot, I get the Grub screen with the option for 'Gentoo Linux 2.6.11-r3' and when I select it, the screen goes black, writes something on the screen very quickly, and then presents me with the Grub screen again.
I partioned my drive just like the guide as I was using a 20gig drive and no other OS, and used the following grub.conf file:
================================================
Code:
# Which listing to boot as default. 0 is the first, 1 the second etc.
default 0
# How many seconds to wait before the default listing is booted.
timeout 30
# Nice, fat splash-image to spice things up :)
# Comment out if you don't have a graphics card installed
splashimage=(hd0,0)/grub/splash.xpm.gz
title=Gentoo Linux 2.6.11-r3
# Partition where the kernel image (or operating system) is located
root (hd0,0)
kernel /kernel-2.6.11-gentoo-r3 root=/dev/hda3
# The next four lines are only if you dualboot with a Windows system.
# In this case, Windows is hosted on /dev/hda6.
# title=Windows XP
# rootnoverify (hd0,5)
# makeactive
# chainloader +1
===============================================