I'm trying to boot a multiboot-compliant image file (of mzscheme over OSKit) using GRUB2, but the instructions I have are for GRUB. I can get it to boot, but I'd like to have some command-line arguments passed in. The GRUB instructions say to add them after the line:
kernel= (fd0)/boot/mz.mb.gz
They give further instructions about the --fs flag:
--fs <drive> <partition> : mounts the given partition as the root
directory. For example, to mount the seventh parition on main disk,
supply: --fs hda f.
My GRUB2 menu entry looks like this:
menuentry "mzScheme" {
set root='(hd0,3)'
multiboot /boot/mz.mb.gz --fs hda c
boot
}
What am I doing wrong?