lkml.org 
[lkml]   [2001]   [Oct]   [23]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[PATCH] BOOTP Standalone Floppy Boot (2.4.13pre6)
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
--- 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
\
 
 \ /
  Last update: 2005-03-22 13:10    [W:0.056 / U:0.160 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site