8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4457e31 + added92 commit 4802e11Copy full SHA for 4802e11
genfstab.in
@@ -58,6 +58,14 @@ optstring_apply_quirks() {
58
fi
59
60
case $fstype in
61
+ btrfs)
62
+ # Having only one of subvol= and subvolid= is enough for mounting a btrfs subvolume
63
+ # And having subvolid= set prevents things like 'snapper rollback' to work, as it
64
+ # updates the subvolume in-place, leaving subvol= unchanged with a different subvolid.
65
+ if optstring_has_option "$varname" subvol; then
66
+ optstring_remove_option "$varname" subvolid
67
+ fi
68
+ ;;
69
f2fs)
70
# These are Kconfig options for f2fs. Kernels supporting the options will
71
# only provide the negative versions of these (e.g. noacl), and vice versa
0 commit comments