You can try inserting the modules for RAID into the core.img file that grub2 uses.
boot from the DVD and select rescue mode, this should mount your installed system under /mnt/sysimage
edit your /mnt/sysimage/boot/grub2/grub.cfg and add the lines:
Code:
insmod raid
insmod mdraid09
insmod mdraid1x
Then (If you are using the first 2 disks in your system for your RAID)
Code:
chroot /mnt/sysimage
grub2-install /dev/sda
grub2-install /dev/sdb
/boot does not have to be a non-RAID partition, but sometimes even with inserting the modules manually it doesn't work properly. So it is stilll recommended to have /boot on a non-RAID partition.