summaryrefslogtreecommitdiffstats
path: root/pyanaconda/bootloader.py
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2012-09-27 15:43:07 -0500
committerDavid Lehman <dlehman@redhat.com>2012-10-04 20:33:51 -0500
commit186743440e5c5c5329d8344be3d269447f0f8e6b (patch)
treefcf23413baabd7edd257d2da277b3778ad7f1c8e /pyanaconda/bootloader.py
parentc6c341e59fc029c85df281d9aca8ef3ad38af1e5 (diff)
downloadanaconda-186743440e5c5c5329d8344be3d269447f0f8e6b.tar.gz
anaconda-186743440e5c5c5329d8344be3d269447f0f8e6b.tar.xz
anaconda-186743440e5c5c5329d8344be3d269447f0f8e6b.zip
Allow xfs /boot.
Diffstat (limited to 'pyanaconda/bootloader.py')
-rw-r--r--pyanaconda/bootloader.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyanaconda/bootloader.py b/pyanaconda/bootloader.py
index 0ca491aef..1333c751c 100644
--- a/pyanaconda/bootloader.py
+++ b/pyanaconda/bootloader.py
@@ -1343,7 +1343,7 @@ class GRUB2(GRUB):
can_update = True
# requirements for boot devices
- stage2_format_types = ["ext4", "ext3", "ext2", "btrfs"]
+ stage2_format_types = ["ext4", "ext3", "ext2", "btrfs", "xfs"]
stage2_device_types = ["partition", "mdarray", "lvmlv", "btrfs volume"]
stage2_raid_levels = [mdraid.RAID0, mdraid.RAID1, mdraid.RAID4,
mdraid.RAID5, mdraid.RAID6, mdraid.RAID10]