summaryrefslogtreecommitdiffstats
path: root/partedUtils.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-07-16 03:23:20 +0000
committerJeremy Katz <katzj@redhat.com>2003-07-16 03:23:20 +0000
commita51764f258d46a2e2f0ae39f25144c6ffabb8804 (patch)
tree18980a7ca91a86f6432dd19e172608ed7c12e8f1 /partedUtils.py
parent1b2f9fe18937b9f187b7fd77a50c2c7d0f369654 (diff)
downloadanaconda-a51764f258d46a2e2f0ae39f25144c6ffabb8804.tar.gz
anaconda-a51764f258d46a2e2f0ae39f25144c6ffabb8804.tar.xz
anaconda-a51764f258d46a2e2f0ae39f25144c6ffabb8804.zip
merge from taroon branch. product.img stuff, md can be modular, lots of
little things across the board
Diffstat (limited to 'partedUtils.py')
-rw-r--r--partedUtils.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/partedUtils.py b/partedUtils.py
index 5495d792f..f5c20c1c7 100644
--- a/partedUtils.py
+++ b/partedUtils.py
@@ -238,16 +238,15 @@ def getDefaultDiskType():
elif iutil.getArch() == "ppc":
return parted.disk_type_get("msdos")
else:
- # XXX fix me for alpha at least
return parted.disk_type_get("msdos")
archLabels = {'i386': ['msdos'],
- 'alpha': ['bsd'],
's390': ['dasd'],
'alpha': ['bsd', 'msdos'],
'sparc': ['sun'],
'ia64': ['msdos', 'gpt'],
- 'ppc': ['msdos', 'mac']}
+ 'ppc': ['msdos', 'mac'],
+ 'x86_64': ['msdos']}
def checkDiskLabel(disk, intf):
"""Check that the disk label on disk is valid for this machine type."""