summaryrefslogtreecommitdiffstats
path: root/anaconda
diff options
context:
space:
mode:
authorMartin Sivak <msivak@redhat.com>2009-12-17 16:08:15 +0100
committerMartin Sivak <msivak@redhat.com>2010-01-08 17:13:05 +0100
commit57a355bcb107054ddfb579a6ad79527511980809 (patch)
tree9b59383b87084ddc0d534ecb1c942b67a5f4036e /anaconda
parent406bc3cb0b3dff042942b72f26b4304affe30a13 (diff)
downloadanaconda-57a355bcb107054ddfb579a6ad79527511980809.tar.gz
anaconda-57a355bcb107054ddfb579a6ad79527511980809.tar.xz
anaconda-57a355bcb107054ddfb579a6ad79527511980809.zip
Install the driver discs according to what was loaded in stage1
Diffstat (limited to 'anaconda')
-rwxr-xr-xanaconda4
1 files changed, 4 insertions, 0 deletions
diff --git a/anaconda b/anaconda
index 7d10769a3..dd931d3d5 100755
--- a/anaconda
+++ b/anaconda
@@ -231,6 +231,7 @@ def parseOptions():
op.add_option("--nomount", dest="rescue_nomount", action="store_true", default=False)
op.add_option("--updates", dest="updateSrc", action="store", type="string")
op.add_option("--dogtail", dest="dogtail", action="store", type="string")
+ op.add_option("--dlabel", action="store_true", default=False)
# Deprecated, unloved, unused
op.add_option("-r", "--rootPath", dest="unsupportedMode",
@@ -658,6 +659,9 @@ if __name__ == "__main__":
# Default is to prompt to mount the installed system.
anaconda.rescue_mount = not opts.rescue_nomount
+ if opts.dlabel: #autodetected driverdisc in use
+ flags.dlabel = True
+
if opts.noipv4:
flags.useIPv4 = False