From ce0bfbe4e73cd7cd3d9194b24caddf854efd2ff5 Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Thu, 1 Nov 2001 23:41:43 +0000 Subject: merge from branch --- kickstart.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'kickstart.py') 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] -- cgit