search for: user_dev_name

Displaying 2 results from an estimated 2 matches for "user_dev_name".

2003 Sep 14
2
FWD: Network Boot IP Configuration Dilemma
If you want eth0 to be used and no dynamic IP configuration request should not occur in the Linux kernel, specify *both* APPEND and IPAPPEND options like: APPEND ip=:::::eth0:none IPAPPEND 1 It's very tricky but it works, at least Linux 2.4.18 which I tested. The IP-PNP routine in the kernel doesn't modify values if the option values are not explicitly specified. IPAPPEND doesn't
2003 May 22
0
[PATCH 2.5.69 1/3] remove ipconfig support from the kernel
...as root */ - -/* Persistent data: */ - -int ic_proto_used; /* Protocol used, if any */ -u32 ic_nameservers[CONF_NAMESERVERS_MAX]; /* DNS Server IP addresses */ -u8 ic_domain[64]; /* DNS (not NIS) domain name */ - -/* - * Private state. - */ - -/* Name of user-selected boot device */ -static char user_dev_name[IFNAMSIZ] __initdata = { 0, }; - -/* Protocols supported by available interfaces */ -static int ic_proto_have_if __initdata = 0; - -#ifdef IPCONFIG_DYNAMIC -static spinlock_t ic_recv_lock = SPIN_LOCK_UNLOCKED; -static volatile int ic_got_reply __initdata = 0; /* Proto(s) that replied */ -#endif...