summaryrefslogtreecommitdiffstats
path: root/kickstart.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2001-02-01 23:12:57 +0000
committerMike Fulbright <msf@redhat.com>2001-02-01 23:12:57 +0000
commit4b39d55b22864be5be5bfc789e50ba2bdc6677ba (patch)
treea5f4fdf7da7f1c84d7fa8a3ff41a50d58352afcf /kickstart.py
parente711b46cb7d9f1529328b9b048c39d2f71bdb647 (diff)
downloadanaconda-4b39d55b22864be5be5bfc789e50ba2bdc6677ba.tar.gz
anaconda-4b39d55b22864be5be5bfc789e50ba2bdc6677ba.tar.xz
anaconda-4b39d55b22864be5be5bfc789e50ba2bdc6677ba.zip
add nolinear to lilo ks cmd
Diffstat (limited to 'kickstart.py')
-rw-r--r--kickstart.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/kickstart.py b/kickstart.py
index f6c2b7f0a..0a6e3d743 100644
--- a/kickstart.py
+++ b/kickstart.py
@@ -193,7 +193,7 @@ class KickstartBase(BaseInstallClass):
def doLilo (self, args):
(args, extra) = isys.getopt(args, '',
- [ 'append=', 'location=', 'linear' ])
+ [ 'append=', 'location=', 'linear', 'nolinear' ])
appendLine = None
location = "mbr"
@@ -205,6 +205,8 @@ class KickstartBase(BaseInstallClass):
appendLine = arg
elif str == '--linear':
linear = 1
+ elif str == '--nolinear':
+ linear = 0
elif str == '--location':
if arg == 'mbr' or arg == 'partition':
location = arg