Fix zipl setup for use with custom btrfs root vol
In the setup case that btrfs is used for the system and the root partition is on a custom named volume (not /), this information was not passed to the zipl bootloader instance and this caused the mounting of the overall root system to fail. This commit fixes it
This commit is contained in:
parent
f4f566af3f
commit
2e409ec189
@ -60,7 +60,8 @@ class BootLoaderZipl(BootLoaderSpecBase):
|
||||
boot_options.get('root_device'),
|
||||
boot_options.get('boot_device'),
|
||||
boot_options.get('efi_device'),
|
||||
boot_options.get('system_volumes')
|
||||
boot_options.get('system_volumes'),
|
||||
boot_options.get('system_root_volume')
|
||||
)
|
||||
root_dir = self.root_mount.mountpoint
|
||||
kernel_info = BootImageBase(
|
||||
|
||||
Loading…
Reference in New Issue
Block a user