public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* 2.4.6 and netboot
@ 2001-07-19 12:26 Wakko Warner
  2001-07-19 14:51 ` Ryan Sweet
  2001-07-19 16:10 ` Joshua Schmidlkofer
  0 siblings, 2 replies; 5+ messages in thread
From: Wakko Warner @ 2001-07-19 12:26 UTC (permalink / raw)
  To: linux-kernel

I'm using a kernel that is dd'd to a floppy to net boot linux on random
machines.  I noticed that 2.4.6 won't get it's IP from the server (it won't
even attempt it).  2.4.4 works

If any more info is needed, just ask.

-- 
 Lab tests show that use of micro$oft causes cancer in lab animals

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: 2.4.6 and netboot
  2001-07-19 12:26 2.4.6 and netboot Wakko Warner
@ 2001-07-19 14:51 ` Ryan Sweet
  2001-07-19 16:32   ` Wakko Warner
  2001-07-19 16:10 ` Joshua Schmidlkofer
  1 sibling, 1 reply; 5+ messages in thread
From: Ryan Sweet @ 2001-07-19 14:51 UTC (permalink / raw)
  To: Wakko Warner; +Cc: linux-kernel

On Thu, 19 Jul 2001, Wakko Warner wrote:

> I'm using a kernel that is dd'd to a floppy to net boot linux on random
> machines.  I noticed that 2.4.6 won't get it's IP from the server (it won't
> even attempt it).  2.4.4 works
> 
> If any more info is needed, just ask.

It sounds as though you left out CONFIG_IP_PNP in the kernel
configuration.  netboot works fine under 2.4.6 for me....


-- 
Ryan Sweet <ryan.sweet@atosorigin.com>
Atos Origin Engineering Services
http://www.aoes.nl


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: 2.4.6 and netboot
  2001-07-19 12:26 2.4.6 and netboot Wakko Warner
  2001-07-19 14:51 ` Ryan Sweet
@ 2001-07-19 16:10 ` Joshua Schmidlkofer
  2001-07-19 16:35   ` Wakko Warner
  1 sibling, 1 reply; 5+ messages in thread
From: Joshua Schmidlkofer @ 2001-07-19 16:10 UTC (permalink / raw)
  To: Wakko Warner, linux-kernel

On Thursday 19 July 2001 06:26 am, Wakko Warner wrote:
> I'm using a kernel that is dd'd to a floppy to net boot linux on random
> machines.  I noticed that 2.4.6 won't get it's IP from the server (it won't
> even attempt it).  2.4.4 works
>
> If any more info is needed, just ask.

Sine 2.4.4 I have been unable to make ipconfig automagically go, and I think 
that this configuration is not supported.   At least, with my limited 
knowledge of how ipconfig works  you must to pass: 'ipconfig=dhcp', or 
ipconfig='bootp' to the kernel at boot time.  I built a LILO disk, but
I think that syslinux would work.  Also, I did eventually successfully get an 
Xterminal running.

After 2.4.4 ipconfig was changed to the ipconfig= style of behaviour.  I 
don't know why, but someone does.  I think it has to do with implementation 
cahnges to allow for modularized NIC's to use ipautoconfig.   This seems 
insane that functionality was cut in order to do this.

Also, I have been unable to make bootp work for nfsboot, but I suspect my 
bootp server - not the kernel.

BACK to the point.  Since 2.4.5 I have had to use lilo, and add a line that 
says 'nfs=[all that stuff] ipconfig=dhcp'

good luck.

js


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: 2.4.6 and netboot
  2001-07-19 14:51 ` Ryan Sweet
@ 2001-07-19 16:32   ` Wakko Warner
  0 siblings, 0 replies; 5+ messages in thread
From: Wakko Warner @ 2001-07-19 16:32 UTC (permalink / raw)
  To: Ryan Sweet; +Cc: linux-kernel

> > I'm using a kernel that is dd'd to a floppy to net boot linux on random
> > machines.  I noticed that 2.4.6 won't get it's IP from the server (it won't
> > even attempt it).  2.4.4 works
> > 
> > If any more info is needed, just ask.
> 
> It sounds as though you left out CONFIG_IP_PNP in the kernel
> configuration.  netboot works fine under 2.4.6 for me....

# grep CONFIG_IP_PNP /usr/src/linux/wdist/2.4.6/.config       
CONFIG_IP_PNP=y
# CONFIG_IP_PNP_DHCP is not set
CONFIG_IP_PNP_BOOTP=y
# CONFIG_IP_PNP_RARP is not set
#

Nope, didn't.  2.4.4 works just fine, 2.4.6 doesn't.  I also have no way of
doing kernel parameters since it's a raw kernel.

-- 
 Lab tests show that use of micro$oft causes cancer in lab animals

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: 2.4.6 and netboot
  2001-07-19 16:10 ` Joshua Schmidlkofer
@ 2001-07-19 16:35   ` Wakko Warner
  0 siblings, 0 replies; 5+ messages in thread
From: Wakko Warner @ 2001-07-19 16:35 UTC (permalink / raw)
  To: Joshua Schmidlkofer; +Cc: linux-kernel

> On Thursday 19 July 2001 06:26 am, Wakko Warner wrote:
> > I'm using a kernel that is dd'd to a floppy to net boot linux on random
> > machines.  I noticed that 2.4.6 won't get it's IP from the server (it won't
> > even attempt it).  2.4.4 works
> >
> > If any more info is needed, just ask.
> 
> Sine 2.4.4 I have been unable to make ipconfig automagically go, and I think 
> that this configuration is not supported.   At least, with my limited 
> knowledge of how ipconfig works  you must to pass: 'ipconfig=dhcp', or 
> ipconfig='bootp' to the kernel at boot time.  I built a LILO disk, but
> I think that syslinux would work.  Also, I did eventually successfully get an 
> Xterminal running.

> After 2.4.4 ipconfig was changed to the ipconfig= style of behaviour.  I 
> don't know why, but someone does.  I think it has to do with implementation 
> cahnges to allow for modularized NIC's to use ipautoconfig.   This seems 
> insane that functionality was cut in order to do this.

Hmm, maybe I'll check the diff on 2.4.5 to see what was done.

> Also, I have been unable to make bootp work for nfsboot, but I suspect my 
> bootp server - not the kernel.
> 
> BACK to the point.  Since 2.4.5 I have had to use lilo, and add a line that 
> says 'nfs=[all that stuff] ipconfig=dhcp'

=(

-- 
 Lab tests show that use of micro$oft causes cancer in lab animals

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2001-07-19 16:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-07-19 12:26 2.4.6 and netboot Wakko Warner
2001-07-19 14:51 ` Ryan Sweet
2001-07-19 16:32   ` Wakko Warner
2001-07-19 16:10 ` Joshua Schmidlkofer
2001-07-19 16:35   ` Wakko Warner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox