> 
> I did that and built multiboot, however, now there's one more problem: how do 
I boot the file? Can I boot from a floppy and continue loading stuff from the 
CD? Can I do a network boot?
>  
>  
Sure, you can put multiboot on a floppy. Boot from CD and manually
type in commands to load multiboot from floppy.

You can also write your own bootable CD with the modified multiboot.
Copy /boot from Solaris media to disk, replace <dir>/boot/multiboot,
and use the following command to recreate iso image:

mkisofs -o <dir> \
        -b boot/grub/stage2_eltorito \
        -c .catalog \
        -no-emul-boot \
        -boot-load-size 4 \
        -boot-info-table \
        -relaxed-filenames -N -L -l \
        -r -J \
        -d -D \
        -V newboot <output.iso>
        
Shudong

_______________________________________________
opensolaris-code mailing list
[email protected]
http://mail.opensolaris.org/mailman/listinfo/opensolaris-code

Reply via email to