Thank you. I read the /sbin/grub-install script. I found that new /sbin/grub-install script has a hack for software-RAID1, and this hack forces installation drives to a MBR. install_device=`resolve_symlink "$install_device"` for install_drive in `find_real_devs $install_device` ; do install_drive=`convert $install_drive | sed 's/,[0-9]*)/)/'` if [ "x$install_drive" = "x" ]; then exit 1 fi install_drives="${install_drives} ${install_drive}" done The sed always bites partition number part of GRUB-style drive name. This is only a case for /dev/foobar style of install device. So, specify install device in GRUB style can be a workaround. like this /sbin/grub-install hd0,1 On Tue, 15 Mar 2005 23:50:51 -0800 Aaron Kurtz <a.kurtz@xxxxxxxxxxx> wrote: > On Wed, 2005-03-16 at 16:36 +0900, Kazutoshi Morioka wrote: > [snip] > > Any infomation? > > Not really, beyond the fact that this is a known issue. > > https://bugzilla.redhat.com/beta/show_bug.cgi?id=151204 > -- > Aaron Kurtz <a.kurtz@xxxxxxxxxxx> GPG Key ID: ED588CF2 > > -- > fedora-test-list mailing list > fedora-test-list@xxxxxxxxxx > To unsubscribe: > http://www.redhat.com/mailman/listinfo/fedora-test-list