I would make the grub change before even removing the drive. When you type grub, statement,
root (hd0,0) tells grub to look in /dev/hda1 for the grub.conf file. The statement,
setup (hd0) tells grub to load the mbr of /dev/hda ( your first drive )
For example:
Code:
grub>
root (hd0,0)
Filesystem type is ext2fs, partition type 0x83
grub>
setup (hd0)
Checking if "/boot/grub/stage1" exists... yes
Checking if "/boot/grub/stage2" exists... yes
Checking if "/boot/grub/e2fs_stage1_5" exists... yes
Running "embed /boot/grub/e2fs_stage1_5 (hd0)"... 15 sectors are embedded.
succeeded
Running "install /boot/grub/stage1 d (hd0) (hd0)1+15 p (hd0,0)/boot/grub/stag
e2 /boot/grub/grub.conf"... succeeded
Done.
grub> quit