summaryrefslogtreecommitdiffstats
path: root/anaconda
diff options
context:
space:
mode:
authorjakub <jakub>1999-10-03 16:34:23 +0000
committerjakub <jakub>1999-10-03 16:34:23 +0000
commit24b9cebb3d36dd181cd247553e72d29e73799fc6 (patch)
tree23dcff864aa1e4e02a2b1f8e6716c832e383f694 /anaconda
parent22822f38fcfeb133ad36625d75b7d7d050c2a560 (diff)
downloadanaconda-24b9cebb3d36dd181cd247553e72d29e73799fc6.tar.gz
anaconda-24b9cebb3d36dd181cd247553e72d29e73799fc6.tar.xz
anaconda-24b9cebb3d36dd181cd247553e72d29e73799fc6.zip
First piece of changes to make serial install possible.
More to come once I don't sit behind 14.4k modem and can do more debugging.
Diffstat (limited to 'anaconda')
-rwxr-xr-xanaconda7
1 files changed, 5 insertions, 2 deletions
diff --git a/anaconda b/anaconda
index 9749fb250..3775a0089 100755
--- a/anaconda
+++ b/anaconda
@@ -30,7 +30,7 @@ _ = gettext.gettext
[ 'gui', 'text', 'test', 'debug', 'method=', 'rootpath=',
'testpath=', 'mountfs', 'traceonly', 'kickstart=',
'lang=', 'keymap=', 'kbdtype=', 'module=',
- 'expert'])
+ 'expert', 'serial' ])
# remove the arguments - gnome_init doesn't understand them
for arg in sys.argv[1:]:
@@ -49,6 +49,7 @@ traceOnly = 0
mouseInfo = None
x = None
kickstart = None
+serial = 0
expert = 0
lang = None
keymap = None
@@ -83,6 +84,8 @@ for n in args:
traceOnly = 1
elif (str == '--expert'):
expert = 1
+ elif (str == '--serial'):
+ serial = 1
elif (str == '--lang'):
lang = arg
elif (str == '--keymap'):
@@ -229,7 +232,7 @@ if iutil.getArch() == "sparc":
try:
todo = ToDo(intf, method, rootPath, installSystem = installPackages,
setupFilesystems = setupFilesystems, mouse = mouseInfo,
- instClass = instClass, x = x, expert = expert,
+ instClass = instClass, x = x, expert = expert, serial = serial,
extraModules = extraModules)
intf.run(todo, test = test)
except: