summaryrefslogtreecommitdiffstats
path: root/pyanaconda/bootloader.py
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2012-12-20 15:34:28 -0600
committerDavid Lehman <dlehman@redhat.com>2012-12-21 15:20:12 -0600
commit987b196b0b3e65f906d822b14cd17e856b7be46b (patch)
tree4ea02bd26251ecda38bdc1bebf74910c64aaa409 /pyanaconda/bootloader.py
parent6e4efa1ee8c506f2a50bc125fbb1ce51807124e7 (diff)
downloadanaconda-987b196b0b3e65f906d822b14cd17e856b7be46b.tar.gz
anaconda-987b196b0b3e65f906d822b14cd17e856b7be46b.tar.xz
anaconda-987b196b0b3e65f906d822b14cd17e856b7be46b.zip
Allow /boot on btrfs subvol if using grub2. (#888603,868465)
Diffstat (limited to 'pyanaconda/bootloader.py')
-rw-r--r--pyanaconda/bootloader.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pyanaconda/bootloader.py b/pyanaconda/bootloader.py
index 1c3bdbc30..00644a75b 100644
--- a/pyanaconda/bootloader.py
+++ b/pyanaconda/bootloader.py
@@ -1352,7 +1352,8 @@ class GRUB2(GRUB):
# requirements for boot devices
stage2_format_types = ["ext4", "ext3", "ext2", "btrfs", "xfs"]
- stage2_device_types = ["partition", "mdarray", "lvmlv", "btrfs volume"]
+ stage2_device_types = ["partition", "mdarray", "lvmlv", "btrfs volume",
+ "btrfs subvolume"]
stage2_raid_levels = [mdraid.RAID0, mdraid.RAID1, mdraid.RAID4,
mdraid.RAID5, mdraid.RAID6, mdraid.RAID10]