summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2008-03-28 10:44:13 -1000
committerDavid Cantrell <dcantrell@redhat.com>2008-03-28 10:44:13 -1000
commitb546519eef0e1b422ecf97fe44586a50f5a2fc25 (patch)
treea68a8694e1c24e682d399bf2cf61009e5fbbae5a
parent5a6165c075206bdc132c04a70d4fa80712a59d44 (diff)
downloadanaconda-b546519eef0e1b422ecf97fe44586a50f5a2fc25.tar.gz
anaconda-b546519eef0e1b422ecf97fe44586a50f5a2fc25.tar.xz
anaconda-b546519eef0e1b422ecf97fe44586a50f5a2fc25.zip
Allow GPT disk labels on ppc/ppc64.
-rw-r--r--partedUtils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/partedUtils.py b/partedUtils.py
index 6cb4830bf..e4992b47a 100644
--- a/partedUtils.py
+++ b/partedUtils.py
@@ -320,7 +320,7 @@ archLabels = {'i386': ['msdos', 'gpt'],
'alpha': ['bsd', 'msdos'],
'sparc': ['sun'],
'ia64': ['msdos', 'gpt'],
- 'ppc': ['msdos', 'mac', 'amiga'],
+ 'ppc': ['msdos', 'mac', 'amiga', 'gpt'],
'x86_64': ['msdos', 'gpt']}
def labelDisk(deviceFile, forceLabelType=None):