summaryrefslogtreecommitdiffstats
path: root/partitioning.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2001-07-19 02:01:02 +0000
committerJeremy Katz <katzj@redhat.com>2001-07-19 02:01:02 +0000
commit5b0b03307068ba62de866098765f4b82b56e3906 (patch)
tree49f2051216b5731fba45aa4d4d4353146da56f81 /partitioning.py
parent4e9f6e4163fb7be9469271cb36e001044eedd3e4 (diff)
downloadanaconda-5b0b03307068ba62de866098765f4b82b56e3906.tar.gz
anaconda-5b0b03307068ba62de866098765f4b82b56e3906.tar.xz
anaconda-5b0b03307068ba62de866098765f4b82b56e3906.zip
use actual partition type as one of the criteria in determining if it should
be the DOS install on the system
Diffstat (limited to 'partitioning.py')
-rw-r--r--partitioning.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/partitioning.py b/partitioning.py
index 2fbe7090e..deeca0d19 100644
--- a/partitioning.py
+++ b/partitioning.py
@@ -1336,3 +1336,6 @@ def queryFormatPreExisting(intf):
type = "yesno")
return rc
+
+# XXX is this all of the possibilities?
+dosPartitionTypes = [ 1, 6, 11, 12, 14, 15 ]