diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-09-10 19:22:55 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-09-10 19:22:55 +0000 |
commit | a31e78d2e43ff0f3cb46c040122370f68428cc0a (patch) | |
tree | 1fc10acf636444cba5eb38764835b438482bc216 /anaconda | |
parent | c6e1ba00c7a44d2160b57017ca5c290d1f438d02 (diff) | |
download | anaconda-a31e78d2e43ff0f3cb46c040122370f68428cc0a.tar.gz anaconda-a31e78d2e43ff0f3cb46c040122370f68428cc0a.tar.xz anaconda-a31e78d2e43ff0f3cb46c040122370f68428cc0a.zip |
some non-controversial bits of sparc. also pulls in updated loader/stubs.c
which should fix non-diet minilibc build
Diffstat (limited to 'anaconda')
-rwxr-xr-x | anaconda | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -98,7 +98,7 @@ try: [ 'text', 'xmode', 'test', 'debug', 'nofallback', 'method=', 'rootpath=', 'pcic=', "overhead=", 'testpath=', 'mountfs', 'traceonly', 'kickstart=', - 'lang=', 'keymap=', 'module=', 'class=', + 'lang=', 'keymap=', 'kbdtype=', 'module=', 'class=', 'expert', 'serial', 'lowres', 'nofb', 'rescue', 'nomount', 'autostep', 'resolution=', 'skipddc']) except TypeError, msg: @@ -152,7 +152,7 @@ mousehw = None lang = None method = None keymap = None -kbdtpye = None +kbdtype = None progmode = None customClass = None kbd = None @@ -231,6 +231,8 @@ for n in args: display_mode = 't' elif (str == '-x' or str == '--xmode'): xmode = 1 + elif (str == '--kbdtype'): + kbdtype = arg # s390s don't have ttys if iutil.getArch() == "s390": |