I'm able to burn a DVD that has lots of stuff on it and boots and starts setup but then I hit the "no catalog found at cd://?devices/hdb" error. I did not run create_package_descr since I didn't add any packages vs. what the CD's already have and wanted to limit dependencies. I burned the DVD on Mac OS X. Some key missing information I have found is like, and I don't know if this is right since it isn't quite working:
An excerpt from my Perl:
my $BootDirectory = catfile($TempMain, "suseboot");
my $BootFile = catfile($BootDirectory, "yaboot");
my $Command =
"hdiutil makehybrid"
. " -o $Out"
# . " -default-volume-name $LongVolumeName"
# . " -publisher $Publisher"
. " -eltorito-boot $BootFile -no-emul-boot"
. " -iso"
. " -iso-volume-name $ShortVolumeName"
# . " -joliet"
# . " -joliet-volume-name $LongVolumeName"
. " -hfs"
. " -hfs-blessed-directory $BootDirectory"
. " -hfs-volume-name $LongVolumeName"
. " $TempMain";
hdiutil makehybrid is like mkisofs but it comes with Mac OS X (10.4).
|