From 2e409ec189385a9d60302d64c6a2e6c8bb2f9e57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcus=20Sch=C3=A4fer?= Date: Fri, 22 Mar 2024 16:35:10 +0100 Subject: [PATCH] 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 --- kiwi/bootloader/config/zipl.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kiwi/bootloader/config/zipl.py b/kiwi/bootloader/config/zipl.py index 7cec123a..8147baf1 100644 --- a/kiwi/bootloader/config/zipl.py +++ b/kiwi/bootloader/config/zipl.py @@ -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(