From: Stefan Schantl Date: Mon, 26 Feb 2024 05:36:08 +0000 (+0100) Subject: installer: Correctly umount main BTRFS partition. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e4ca9fe0995f915820d5e89e6298cdfb31da2c20;p=people%2Fstevee%2Fipfire-2.x.git installer: Correctly umount main BTRFS partition. Signed-off-by: Stefan Schantl --- diff --git a/src/installer/hw.c b/src/installer/hw.c index 420feaca7..205d40d21 100644 --- a/src/installer/hw.c +++ b/src/installer/hw.c @@ -916,7 +916,7 @@ int hw_create_btrfs_layout(const char* path, const char* output) { } // Umount the main BTRFS after subvolume creation. - r = hw_umount(path, 0); + r = hw_umount(DESTINATION_MOUNT_PATH, 0); if (r) return r;