diff options
-rw-r--r-- | pyanaconda/bootloader.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pyanaconda/bootloader.py b/pyanaconda/bootloader.py index 228b5c4c0..3469e1f4c 100644 --- a/pyanaconda/bootloader.py +++ b/pyanaconda/bootloader.py @@ -900,6 +900,11 @@ class BootLoader(object): dracut_devices.extend(self.storage.fsset.swapDevices) + # Does /usr have its own device? If so, we need to tell dracut + usr_device = self.storage.mountpoints.get("/usr") + if usr_device: + dracut_devices.extend([usr_device]) + done = [] # When we see a device whose setup string starts with a key in this # dict we pop that pair from the dict. When we're done looking at |