summaryrefslogtreecommitdiffstats
path: root/iutil.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-04-24 15:46:31 +0000
committerJeremy Katz <katzj@redhat.com>2003-04-24 15:46:31 +0000
commit0a562126d84c59a113231ae7ab38984f92d62153 (patch)
tree5e87b9094f4ebdc328979e3a0640dee5f1fc40cb /iutil.py
parentdd200d781bd9012f562399c2ee69c23fe60d86b9 (diff)
downloadanaconda-0a562126d84c59a113231ae7ab38984f92d62153.tar.gz
anaconda-0a562126d84c59a113231ae7ab38984f92d62153.tar.xz
anaconda-0a562126d84c59a113231ae7ab38984f92d62153.zip
another taroon merge. tagged before as before-taroon-merge, after as
after-taroon-merge this one adds s390 fixes, basic i/p series platform support, support for multiple kernels and one second stage, cmdline kickstart mode (nice for s390), some warning cleanups.
Diffstat (limited to 'iutil.py')
-rw-r--r--iutil.py11
1 files changed, 4 insertions, 7 deletions
diff --git a/iutil.py b/iutil.py
index a0358b070..0d99a8dd3 100644
--- a/iutil.py
+++ b/iutil.py
@@ -459,17 +459,18 @@ def isUSBDevFSMounted():
def getPPCMachine():
machine = None
# ppc machine hash
- # PPC XXX: add MAI
ppcType = { 'Mac' : 'PMac',
'Book' : 'PMac',
'CHRP IBM' : 'pSeries',
'iSeries' : 'iSeries',
'PReP' : 'PReP',
- 'CHRP' : 'CHRP',
+ 'CHRP' : 'pSeries',
'Amiga' : 'APUS',
'Gemini' : 'Gemini',
'Shiner' : 'ANS',
- 'BRIQ' : 'BRIQ'
+ 'BRIQ' : 'BRIQ',
+ 'Teron' : 'Teron',
+ 'AmigaOne' : 'Teron'
}
if getArch() != "ppc":
@@ -489,7 +490,6 @@ def getPPCMachine():
for type in ppcType.items():
if machine.find(type[0]) != -1:
- log("PowerPC machine type: %s", type[1])
return type[1]
log("Unknown PowerPC machine type: %s" %(machine,))
@@ -511,7 +511,6 @@ def getPPCMacID():
if line.find('machine') != -1:
machine = line.split(':')[1]
machine = machine.strip()
- log("Power Mac machine id: %s", machine)
return machine
log("WARNING: No Power Mac machine id")
@@ -541,7 +540,6 @@ def getPPCMacGen():
for type in pmacGen:
if gen.find(type) != -1:
- log("Power Mac generation: %s", type)
return type
log("Unknown Power Mac generation: %s" %(gen,))
@@ -560,6 +558,5 @@ def getPPCMacBook():
for line in lines:
if not string.find(string.lower(line), 'book') == -1:
- log("PowerBook/iBook: 1")
return 1
return 0