linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] BOOTP Standalone Floppy Boot (2.4.13pre6)
@ 2001-10-23 11:20 Andreas Steinmetz
  2001-10-23 17:48 ` Alan Cox
  0 siblings, 1 reply; 2+ messages in thread
From: Andreas Steinmetz @ 2001-10-23 11:20 UTC (permalink / raw)
  To: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 625 bytes --]

If using 2.4.x standalone floppy boot (i.e. dd if=vmlinuz of=/dev/fd0, then
booting from this floppy) with a BOOTP/NFS root enabled kernel fails. This
behaviour is different from 2.2.x. 2.4.x uses:

__setup("ip=", ip_auto_config_setup);
__setup("nfsaddrs=", nfsaddrs_config_setup);

None of these are called when there are no boot parameters. In case of
standalone floppy boot there are NO boot parameters. This results in no BOOTP
and NFS root configuration done and thus boot failure.

The fix is to set ic_enable to 1 as the default to get the same beaviour as for
2.2.x.


Andreas Steinmetz
D.O.M. Datenverarbeitung GmbH

[-- Attachment #2: ipconfig1.patch --]
[-- Type: text/plain, Size: 398 bytes --]

--- linux/net/ipv4/ipconfig.c	Tue Oct 23 12:58:28 2001
+++ linux-fixed/net/ipv4/ipconfig.c	Tue Oct 23 12:55:02 2001
@@ -100,7 +100,7 @@
  */
 int ic_set_manually __initdata = 0;		/* IPconfig parameters set manually */
 
-int ic_enable __initdata = 0;			/* IP config enabled? */
+int ic_enable __initdata = 1;			/* IP config enabled? */
 
 /* Protocol choice */
 int ic_proto_enabled __initdata = 0

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

* Re: [PATCH] BOOTP Standalone Floppy Boot (2.4.13pre6)
  2001-10-23 11:20 [PATCH] BOOTP Standalone Floppy Boot (2.4.13pre6) Andreas Steinmetz
@ 2001-10-23 17:48 ` Alan Cox
  0 siblings, 0 replies; 2+ messages in thread
From: Alan Cox @ 2001-10-23 17:48 UTC (permalink / raw)
  To: Andreas Steinmetz; +Cc: linux-kernel

> If using 2.4.x standalone floppy boot (i.e. dd if=vmlinuz of=/dev/fd0, then
> booting from this floppy) with a BOOTP/NFS root enabled kernel fails. This
> behaviour is different from 2.2.x. 2.4.x uses:

Standalone floppy boot is purely historic interest, and likely to go away
Stick lilo or similar on the floppy

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

end of thread, other threads:[~2001-10-23 17:41 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-10-23 11:20 [PATCH] BOOTP Standalone Floppy Boot (2.4.13pre6) Andreas Steinmetz
2001-10-23 17:48 ` Alan Cox

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).