Re: ia64-list Digest, Vol 19, Issue 2
Jim Martin <[email protected]> Fri, 31 Mar 2006 11:07:44 -0600
| Newsgroups | gmane.linux.redhat.ia64.general |
|---|---|
| Message-ID | <[email protected]> |
[email protected] wrote: > Send ia64-list mailing list submissions to > [email protected] > > To subscribe or unsubscribe via the World Wide Web, visit > https://www.redhat.com/mailman/listinfo/ia64-list > or, via email, send a message with subject or body 'help' to > [email protected] > > You can reach the person managing the list at > [email protected] > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of ia64-list digest..." > > ------------------------------------------------------------------------ > > Today's Topics: > > 1. creating bootable disks for ia64 machines. (Sriharsha Setty) > 2. Re: creating bootable disks for ia64 machines. (Doug Chapman) > 3. Re: creating bootable disks for ia64 machines. (Sriharsha Setty) > > > ------------------------------------------------------------------------ > > Subject: > creating bootable disks for ia64 machines. > From: > Sriharsha Setty <[email protected]> > Date: > Tue, 28 Mar 2006 16:38:47 +0500 > To: > [email protected] > > To: > [email protected] > > > Hello all, > > I've been wanting to create a bootable disk (based on rhel4) for Itanium > machines. The command that I use to create ISO images currently is > something like this: > > `mkisofs -J -r -T -v -pad -b images/boot.img -c boot.catalog > -no-emul-boot -boot-load-size 1 -o <output-file> <input-directory> ' > > Somehow, this command does not seem to do the job. I wonder if I am > missing out on some step (or a commandline option), as I've even tried the > "boot.img" file from Redhat and it fails to boot as well. > > Has anyone tried this before? I'd be glad to if someone throws some light > on this. > > TIA, > harsha > > > > > > ------------------------------------------------------------------------ > > Subject: > Re: creating bootable disks for ia64 machines. > From: > Doug Chapman <[email protected]> > Date: > Tue, 28 Mar 2006 11:12:36 -0500 > To: > Discussion of Linux on the Intel IA-64 processor <[email protected]> > > To: > Discussion of Linux on the Intel IA-64 processor <[email protected]> > > > Sriharsha, > > It has been a while since I have needed to make a bootable iso but I dug > through my notes. My notes have the same arguments to mkisofs as you > have. > > What happens when you try to boot it? Can you see an efi readable > filesystem from the efi shell? If so then it is likely a problem with > elilo not being set up properly in the boot image. > > - Doug > > On Tue, 2006-03-28 at 16:38 +0500, Sriharsha Setty wrote: > >> Hello all, >> >> I've been wanting to create a bootable disk (based on rhel4) for Itanium >> machines. The command that I use to create ISO images currently is >> something like this: >> >> `mkisofs -J -r -T -v -pad -b images/boot.img -c boot.catalog >> -no-emul-boot -boot-load-size 1 -o <output-file> <input-directory> ' >> >> Somehow, this command does not seem to do the job. I wonder if I am >> missing out on some step (or a commandline option), as I've even tried the >> "boot.img" file from Redhat and it fails to boot as well. >> >> Has anyone tried this before? I'd be glad to if someone throws some light >> on this. >> >> TIA, >> harsha >> >> >> _______________________________________________ >> ia64-list mailing list >> [email protected] >> https://www.redhat.com/mailman/listinfo/ia64-list >> > > > > > ------------------------------------------------------------------------ > > Subject: > Re: creating bootable disks for ia64 machines. > From: > Sriharsha Setty <[email protected]> > Date: > Tue, 28 Mar 2006 21:30:22 +0500 > To: > [email protected] > > To: > [email protected] > > > On Tue, 28 Mar 2006 11:12:36 -0500, Doug Chapman wrote: > > Hello Doug, > > > >> What happens when you try to boot it? Can you see an efi readable >> filesystem from the efi shell? If so then it is likely a problem with >> elilo not being set up properly in the boot image. >> > > > I get the following message : > Load failed [Not found] Press any key to continue. > > -harsha > > > > > ------------------------------------------------------------------------ > > _______________________________________________ > ia64-list mailing list > [email protected] > https://www.redhat.com/mailman/listinfo/ia64-list Sriharsha Here's a template I follow...works every time: ------------------------------- mkdir Boot cd Boot mkdir boot cd boot dd if=/dev/zero of=boot.img bs=10k count=3000 mkfs.msdos boot.img mount -o loop boot.img /mnt cp files into /mnt umount /mnt cd back to Boot mkisofs -r -v -b boot/boot.img -c boot/boot.catalog -no-emul-boot -o boot.iso . Burn boot.iso