index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2022-08-14 11:56:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-14 11:56:24 +0200 |
commit | 65212a46aa43fadb2b0ee88b46b573765d7be9f9 (patch) | |
tree | 53bee1a11fa1d661a62f768a415f79c821691b63 | |
parent | b1ab5ba3723ef0d7c04b061189d5ad74cba0de8b (diff) |
-rw-r--r-- | archinstall/lib/installer.py | 2 |
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py index 08896289..0f298eba 100644 --- a/archinstall/lib/installer.py +++ b/archinstall/lib/installer.py @@ -866,7 +866,7 @@ class Installer: options_entry = f'rw intel_pstate=no_hwp {" ".join(self.KERNEL_PARAMS)}\n' for subvolume in root_partition.subvolumes: - if subvolume.root is True: + if subvolume.root is True and subvolume.name != '<FS_TREE>': options_entry = f"rootflags=subvol={subvolume.name} " + options_entry # Zswap should be disabled when using zram. |