summaryrefslogtreecommitdiffstats
path: root/storage
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-10-21 14:15:39 -0400
committerChris Lumens <clumens@redhat.com>2009-10-21 14:17:12 -0400
commit7508b715310d86b6368f0bd250c02e69bd74905f (patch)
treebf43c9cba12f059cd8494e96d74da2f1eec13e81 /storage
parent5115cdbc8536d12db20a192a78a7c67121aa312b (diff)
downloadanaconda-7508b715310d86b6368f0bd250c02e69bd74905f.tar.gz
anaconda-7508b715310d86b6368f0bd250c02e69bd74905f.tar.xz
anaconda-7508b715310d86b6368f0bd250c02e69bd74905f.zip
Allow /boot to be on a variety of filesystems during kickstart (#529846).
This fixes an inconsistency where /boot could be on various filesystems during interactive installs, but not during kickstart. What filesystems are valid is controlled by the Platform module.
Diffstat (limited to 'storage')
-rw-r--r--storage/formats/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/formats/__init__.py b/storage/formats/__init__.py
index ea60ccbed..ab33211d2 100644
--- a/storage/formats/__init__.py
+++ b/storage/formats/__init__.py
@@ -47,7 +47,7 @@ def get_default_filesystem_type(boot=None):
import platform
if boot:
- fstypes = [platform.getPlatform(None).bootFSType]
+ fstypes = [platform.getPlatform(None).defaultBootFSType]
else:
fstypes = default_fstypes