From 16632332b3a49994edf0016a3c5c3200d32cf6ac Mon Sep 17 00:00:00 2001 From: Martin Sivak Date: Tue, 24 Mar 2009 14:14:56 +0100 Subject: Port the dlabel feature from RHEL (#489314) --- anaconda | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'anaconda') diff --git a/anaconda b/anaconda index 3bbf0fec6..28893e29e 100755 --- a/anaconda +++ b/anaconda @@ -251,6 +251,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) return op.parse_args() @@ -673,6 +674,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 -- cgit