summaryrefslogtreecommitdiffstats
path: root/pyanaconda/network.py
diff options
context:
space:
mode:
authorWill Woods <wwoods@redhat.com>2012-02-10 13:34:58 -0500
committerWill Woods <wwoods@redhat.com>2012-03-16 12:35:53 -0400
commit9bb2110ce77638f2773324272813deb2c7f3bc1c (patch)
tree0148b9877ecdcc1e1f80e2be1598c5bf62be1311 /pyanaconda/network.py
parent3f14678b08148354ff76c1b6ee74303ecde392ec (diff)
downloadanaconda-9bb2110ce77638f2773324272813deb2c7f3bc1c.tar.gz
anaconda-9bb2110ce77638f2773324272813deb2c7f3bc1c.tar.xz
anaconda-9bb2110ce77638f2773324272813deb2c7f3bc1c.zip
Remove misc. references to loader
EVERY LAST REFERENCE TO LOADER MUST BE ELIMINATED RARRRR: - remove references to loader in analog and makeupdates. - change the default progname in isys/log.c from loader to anaconda. - reword comments here and there that refer to loader.
Diffstat (limited to 'pyanaconda/network.py')
-rw-r--r--pyanaconda/network.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyanaconda/network.py b/pyanaconda/network.py
index c26275f49..067f3b1c8 100644
--- a/pyanaconda/network.py
+++ b/pyanaconda/network.py
@@ -441,7 +441,7 @@ class Network:
bootif_mac = None
if ksdevice == 'bootif' and "BOOTIF" in flags.cmdline:
bootif_mac = flags.cmdline["BOOTIF"][3:].replace("-", ":").upper()
- # sort for ksdevice=link (to select the same device as in loader))
+ # sort for ksdevice=link (to select the same device as in initrd))
for dev in sorted(self.netdevices):
mac = self.netdevices[dev].get('HWADDR').upper()
if ksdevice == 'link' and isys.getLinkStatus(dev):