* [Linux-ia64] Interactive installation with PXE booting
@ 2002-01-17 18:20 Christopher D. Maestas
2002-01-17 18:41 ` Stephane Eranian
2002-01-17 19:23 ` Egan Ford
0 siblings, 2 replies; 3+ messages in thread
From: Christopher D. Maestas @ 2002-01-17 18:20 UTC (permalink / raw)
To: linux-ia64
Has anyone been able to write an elilo.conf that allows for an interactive
network installation? For example in pxelinux.cfg/default I can do:
---
label vgainteractiverh72
kernel vmlinuz.rh72
append vga=extended root=/dev/ram0 initrd=initrd.img.rh72 console=tty0
---
I tried in elilo.conf:
---
prompt
timeoutP
default=localdisk
verbose=5
image=vmlinuz.rh72-ia64
label=vgainteractiveia64
read-only
append = "vga=extended console=tty0"
---
And them type in vgainteractiveia64 when prompted, but the kernel panics because
I didn't append a root option. I've tried root=/dev/ram0 and that doesn't
work either.
Thanks,
On Thu, 17 Jan 2002, Egan Ford wrote:
> prompt
> timeoutP
> default=install
>
> image=vmlinuz
> append="console=ttyS0,9600 ks=nfs:jupiter:/tftpboot/ia64.ks ksdevice=eth0"
> label=install
> read-only
> initrd=ramdisk.img
>
> This is what I use to boot RH's installation kernel and initrd with elilo
> and tftp.
--
Christopher D. Maestas
Compaq Federal, LLC
Professional Services
Consulting Associate III
5951 Jefferson Blvd. N.E.
Albuquerque, NM 87109
E-Mail: cdmaest@sandia.gov
Christopher.Maestas@Compaq.Com
Sandia Office Phone: 1.505.284.3643
Pager: 1.800.759.8888 PIN # 1278656
Fax: 1.505.343.7027
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [Linux-ia64] Interactive installation with PXE booting
2002-01-17 18:20 [Linux-ia64] Interactive installation with PXE booting Christopher D. Maestas
@ 2002-01-17 18:41 ` Stephane Eranian
2002-01-17 19:23 ` Egan Ford
1 sibling, 0 replies; 3+ messages in thread
From: Stephane Eranian @ 2002-01-17 18:41 UTC (permalink / raw)
To: linux-ia64
Christopher,
On Thu, Jan 17, 2002 at 11:20:01AM -0700, Christopher D. Maestas wrote:
> Has anyone been able to write an elilo.conf that allows for an interactive
> network installation? For example in pxelinux.cfg/default I can do:
> ---
> label vgainteractiverh72
> kernel vmlinuz.rh72
> append vga=extended root=/dev/ram0 initrd=initrd.img.rh72 console=tty0
> ---
Your problem has nothing to do with the fact that binaries are coming from
the network.
>
> I tried in elilo.conf:
> ---
> prompt
> timeoutP
> default=localdisk
> verbose=5
>
> image=vmlinuz.rh72-ia64
> label=vgainteractiveia64
> read-only
> append = "vga=extended console=tty0"
> ---
>
> And them type in vgainteractiveia64 when prompted, but the kernel panics because
> I didn't append a root option. I've tried root=/dev/ram0 and that doesn't
> work either.
>
The kernel needs two things to boot from a filesystem. First it needs to have
the device driver to access the disk controller. Second it needs to know
which partition the root filesystem is in. The problem you're seing comes
from the fact that your kernel does not have the valid device driver, most likely
the SCSI controller, builtin. This is common with kernels from distributions.
The device driver is dynamically loaded in the kernel via a kernel module
which is stored into the initial ramdisk. So your problem is that you did not
indicate a initrd= option in your elilo.conf. Something like this will do:
image=vmlinuz.rh72-ia64
label=vgainteractiveia64
initrd=initrd.rh72
append = "vga=extended console=tty0"
--
-Stephane
^ permalink raw reply [flat|nested] 3+ messages in thread* RE: [Linux-ia64] Interactive installation with PXE booting
2002-01-17 18:20 [Linux-ia64] Interactive installation with PXE booting Christopher D. Maestas
2002-01-17 18:41 ` Stephane Eranian
@ 2002-01-17 19:23 ` Egan Ford
1 sibling, 0 replies; 3+ messages in thread
From: Egan Ford @ 2002-01-17 19:23 UTC (permalink / raw)
To: linux-ia64
prompt
timeoutP
default=install
image=vmlinuz
label=install
read-only
initrd=ramdisk.img
Works, if you use the vmlinuz from CD/kernels and the ramdisk.img from
CD/images with RH7.1. I have not receive my 7.2 CDs yet so I have not
tested.
> -----Original Message-----
> From: Christopher D. Maestas [mailto:cdmaest@sandia.gov]
> Sent: Thursday, January 17, 2002 11:20 AM
> To: Egan Ford
> Cc: linux-ia64@linuxia64.org
> Subject: [Linux-ia64] Interactive installation with PXE booting
>
>
> Has anyone been able to write an elilo.conf that allows for an interactive
> network installation? For example in pxelinux.cfg/default I can do:
> ---
> label vgainteractiverh72
> kernel vmlinuz.rh72
> append vga=extended root=/dev/ram0 initrd=initrd.img.rh72
> console=tty0
> ---
>
> I tried in elilo.conf:
> ---
> prompt
> timeoutP
> default=localdisk
> verbose=5
>
> image=vmlinuz.rh72-ia64
> label=vgainteractiveia64
> read-only
> append = "vga=extended console=tty0"
> ---
>
> And them type in vgainteractiveia64 when prompted, but the kernel
> panics because
> I didn't append a root option. I've tried root=/dev/ram0 and that doesn't
> work either.
>
> Thanks,
>
> On Thu, 17 Jan 2002, Egan Ford wrote:
>
> > prompt
> > timeoutP
> > default=install
> >
> > image=vmlinuz
> > append="console=ttyS0,9600 ks=nfs:jupiter:/tftpboot/ia64.ks
> ksdevice=eth0"
> > label=install
> > read-only
> > initrd=ramdisk.img
> >
> > This is what I use to boot RH's installation kernel and initrd
> with elilo
> > and tftp.
>
> --
> Christopher D. Maestas
> Compaq Federal, LLC
> Professional Services
> Consulting Associate III
> 5951 Jefferson Blvd. N.E.
> Albuquerque, NM 87109
> E-Mail: cdmaest@sandia.gov
> Christopher.Maestas@Compaq.Com
> Sandia Office Phone: 1.505.284.3643
> Pager: 1.800.759.8888 PIN # 1278656
> Fax: 1.505.343.7027
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2002-01-17 19:23 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-01-17 18:20 [Linux-ia64] Interactive installation with PXE booting Christopher D. Maestas
2002-01-17 18:41 ` Stephane Eranian
2002-01-17 19:23 ` Egan Ford
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox