-
-
Notifications
You must be signed in to change notification settings - Fork 14.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
blivet: Add patch to set NTFS formattable
Even though the ntfs3g utilities are available inside our test environment, the format didn't get advertised as formattable because the _formattable attribute wasn't set to True. Submitted upstream at: storaged-project/blivet#536 Signed-off-by: aszlig <[email protected]>
- Loading branch information
Showing
2 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
pkgs/development/python-modules/blivet/ntfs-formattable.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Submitted upstream at: | ||
|
||
https://github.com/rhinstaller/blivet/pull/536 | ||
|
||
diff --git a/blivet/formats/fs.py b/blivet/formats/fs.py | ||
index 67517d6..9693840 100644 | ||
--- a/blivet/formats/fs.py | ||
+++ b/blivet/formats/fs.py | ||
@@ -1026,6 +1026,7 @@ class NTFS(FS): | ||
_type = "ntfs" | ||
_labelfs = fslabeling.NTFSLabeling() | ||
_resizable = True | ||
+ _formattable = True | ||
_min_size = Size("1 MiB") | ||
_max_size = Size("16 TiB") | ||
_packages = ["ntfsprogs"] |