Page 1 of 1

mkisofs cannot find eltorito file?

Posted: Tue May 19, 2009 6:33 am
by CD1212
I've been following some of the tutorials / articles on this site but I cannot make an eltorito boot image with mkisofs or genisoimage (http://wiki.osdev.org/Bootable_El-Torit ... RUB_Legacy), whenever I try it returns 'Uh, oh I can't find the boot image'.

It must be something I'm doing wrong because I get the same message on Windows and Linux, I cant find any problem with the file permissions either.

Image

Re: mkisofs cannot find eltorito file?

Posted: Tue May 19, 2009 6:46 am
by pcmattman
The file *does* exist at C:\isoimage\boot\grub\stage2_eltorito, doesn't it?

Re: mkisofs cannot find eltorito file?

Posted: Tue May 19, 2009 6:50 am
by CD1212
Yeah, its there in Windows Explorer and I can access it with other command prompt commands (cp)

Re: mkisofs cannot find eltorito file?

Posted: Tue May 19, 2009 6:53 am
by pcmattman
Just checking :)

The problem is that you've given it "isoimage/boot/grub/stage2_eltorito". The wiki article you linked to actually just has "boot/grub/stage2_eltorito" - mkisofs will take the parameter to -b as a descendant of the ISO image directory (in your case, isoimage).

Re: mkisofs cannot find eltorito file?

Posted: Tue May 19, 2009 7:00 am
by CD1212
Ahh yes, that fixed it! :)

Thanks so much for your help pcmattman