I have installed grub2 on a flash drive to boot some os's that I want to carry around. But in grub.cfg when i put this:
Code:
menuentry "BackTrack Persistent" {
set gfxpayload=1024x768
linux /backtrack/boot/vmlinuz BOOT=casper boot=casper persistent rw quiet
initrd /backtrack/boot/initrd.gz
}
it does exactaly the same thing as this
Code:
menuentry "BackTrack Persistent" {
set gfxpayload=1024x768
linux /backtrack/boot/vmlinuz
initrd /backtrack/boot/initrd.gz
}
Grub is not passing parameters for some reason.
I'm thinking of filing a bug report but I want to make sure i'm not doing something wrong first.