I'm trying to create a .iso file using mkisofs.
I have the following folders:
my OS
|
|--src
|--bin
I used the following command:
mkisofs -R -input-charset utf8 -b bin/boot.bin -no-emul-boot -boot-load-size 4 -o os.iso bin
the command was run from the parent directory (my OS) and I got the following error:
genisoimage: Uh oh, I can't find the boot image 'bin/boot.bin' !
I checked, and the file bin/boot.bin does exists. I tried writing ./ before the directory, and using real paths, but no good.
Can any one help me?