summaryrefslogtreecommitdiffstats
path: root/partitioning.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-02-04 17:38:09 +0000
committerJeremy Katz <katzj@redhat.com>2002-02-04 17:38:09 +0000
commit75fdeea80d4ee466bff34bf3b77501d99b408d78 (patch)
tree002fcc43d5497f893c9406c8b083f25763287d6c /partitioning.py
parentf9f4734b5f6cdd43e494a9491c0b932a9caad860 (diff)
downloadanaconda-75fdeea80d4ee466bff34bf3b77501d99b408d78.tar.gz
anaconda-75fdeea80d4ee466bff34bf3b77501d99b408d78.tar.xz
anaconda-75fdeea80d4ee466bff34bf3b77501d99b408d78.zip
add lvm to the list of linux native types
Diffstat (limited to 'partitioning.py')
-rw-r--r--partitioning.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/partitioning.py b/partitioning.py
index f90d3c2d1..00d313256 100644
--- a/partitioning.py
+++ b/partitioning.py
@@ -175,7 +175,7 @@ def map_foreign_to_fsname(type):
return _("Foreign")
def query_is_linux_native_by_numtype(numtype):
- linuxtypes = [0x82, 0x83, 0xfd]
+ linuxtypes = [0x82, 0x83, 0x8e, 0xfd]
for t in linuxtypes:
if int(numtype) == t: