Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Librem5
vmdeboostrap
Commits
3c64318b
Commit
3c64318b
authored
Sep 30, 2019
by
Guido Gunther
Browse files
Merge branch 'f2fs' into 'librem5'
Don't pass any filesystem flags for f2fs See merge request
!1
parents
c2e33785
3650264e
Pipeline
#36406
failed with stages
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
vmdebootstrap/filesystem.py
View file @
3c64318b
...
...
@@ -182,7 +182,7 @@ class Filesystem(Base):
def
get_mount_flags
(
fstype
):
"""Return the fstab mount flags for a given file system type."""
flags
=
[
'errors=remount-ro'
]
if
fstype
==
'btrfs'
:
if
fstype
in
[
'btrfs'
,
'f2fs'
]
:
flags
=
[]
return
','
.
join
(
flags
)
or
'defaults'
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment