summaryrefslogtreecommitdiffstats
path: root/kickstart.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2001-11-01 23:41:43 +0000
committerJeremy Katz <katzj@redhat.com>2001-11-01 23:41:43 +0000
commitce0bfbe4e73cd7cd3d9194b24caddf854efd2ff5 (patch)
treedbb9b5441b1a3557b8f46983b591168498fe3abf /kickstart.py
parent2d85a6a8852f126b044c1531e86f8210962a0b09 (diff)
downloadanaconda-ce0bfbe4e73cd7cd3d9194b24caddf854efd2ff5.tar.gz
anaconda-ce0bfbe4e73cd7cd3d9194b24caddf854efd2ff5.tar.xz
anaconda-ce0bfbe4e73cd7cd3d9194b24caddf854efd2ff5.zip
merge from branch
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]