diff options
author | Jeremy Katz <katzj@redhat.com> | 2001-11-01 23:41:43 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2001-11-01 23:41:43 +0000 |
commit | ce0bfbe4e73cd7cd3d9194b24caddf854efd2ff5 (patch) | |
tree | dbb9b5441b1a3557b8f46983b591168498fe3abf /kickstart.py | |
parent | 2d85a6a8852f126b044c1531e86f8210962a0b09 (diff) | |
download | anaconda-ce0bfbe4e73cd7cd3d9194b24caddf854efd2ff5.tar.gz anaconda-ce0bfbe4e73cd7cd3d9194b24caddf854efd2ff5.tar.xz anaconda-ce0bfbe4e73cd7cd3d9194b24caddf854efd2ff5.zip |
merge from branch
Diffstat (limited to 'kickstart.py')
-rw-r--r-- | kickstart.py | 3 |
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] |