Browse Source

Remove rd.neednet cmdline

rd.neednet could be removed, as we can check /tmp/net.ifaces.
After this patch, kdump can bring up the NIC without
rd.neednet.

Cc: Harald Hoyer <harald@redhat.com>
Cc: Dave Young <dyoung@redhat.com>
Cc: Vivek Goyal <vgoyal@redhat.com>
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
master
Cong Wang 13 years ago committed by Harald Hoyer
parent
commit
db2b12fa91
  1. 3
      dracut.cmdline.7.asc
  2. 2
      modules.d/40network/net-genrules.sh
  3. 2
      modules.d/90livenet/parse-livenet.sh

3
dracut.cmdline.7.asc

@ -301,9 +301,6 @@ auto6::: do IPv6 autoconfiguration @@ -301,9 +301,6 @@ auto6::: do IPv6 autoconfiguration
**biosdevname=0**::
boolean, turn off biosdevname network interface renaming

**rd.neednet=1**::
boolean, bring up network even without netroot set

**vlan=_<vlanname>_:_<phydevice>_**::
Setup vlan device named <vlanname> on <phydeivce>.
We support the four styles of vlan names: VLAN_PLUS_VID (vlan0005), VLAN_PLUS_VID_NO_PAD (vlan5),

2
modules.d/40network/net-genrules.sh

@ -14,7 +14,7 @@ fix_bootif() { @@ -14,7 +14,7 @@ fix_bootif() {
}

# Don't continue if we don't need network
[ -z "$netroot" ] && ! getargbool 0 rd.neednet && return;
[ -z "$netroot" ] && ! [ -e "/tmp/net.ifaces" ] && return;

# Write udev rules
{

2
modules.d/90livenet/parse-livenet.sh

@ -10,7 +10,7 @@ updates=$(getarg live.updates=) @@ -10,7 +10,7 @@ updates=$(getarg live.updates=)
if [ -n "$updates" ]; then
# make sure network comes up even if we're doing a local live device
if [ -z "$netroot" ]; then
echo "rd.neednet=1" > /etc/cmdline.d/90livenet.conf
echo > /tmp/net.ifaces
unset CMDLINE
fi
echo "$updates" > /tmp/liveupdates.info

Loading…
Cancel
Save