summaryrefslogtreecommitdiffstats
path: root/kickstart.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2001-11-01 23:40:24 +0000
committerJeremy Katz <katzj@redhat.com>2001-11-01 23:40:24 +0000
commitb18bcb33c8095542466699fa1e50f6f47b72254f (patch)
treee8f1f10e1445cba15ae48993a359d0dfe43ed075 /kickstart.py
parentc3afca0758feae8da6586115b5c8a7aab414cec6 (diff)
downloadanaconda-b18bcb33c8095542466699fa1e50f6f47b72254f.tar.gz
anaconda-b18bcb33c8095542466699fa1e50f6f47b72254f.tar.xz
anaconda-b18bcb33c8095542466699fa1e50f6f47b72254f.zip
/boot/efi should be vfat (matt domsch)
Diffstat (limited to 'kickstart.py')
-rw-r--r--kickstart.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/kickstart.py b/kickstart.py
index ae6b239af..7c4538243 100644
--- a/kickstart.py
+++ b/kickstart.py
@@ -738,6 +738,9 @@ class KickstartBase(BaseInstallClass):
elif extra[0][:5] == "raid.":
filesystem = fileSystemTypeGet("software RAID")
uniqueID = extra[0]
+ elif extra[0:9] == "/boot/efi":
+ filesystem = fileSystemTypeGet("vfat")
+ mountpoint = extra[0]
else:
filesystem = fileSystemTypeGetDefault()
mountpoint = extra[0]