diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2020-07-26 10:30:57 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2020-07-26 18:35:10 +0200 |
commit | 218a67dfabcdf592325a8f8c49b86478f69ff589 (patch) | |
tree | 3434eb6ae6ab76bfb7f91920f3c0cd35689c0419 /gnu/installer.scm | |
parent | 675e56221e3dfc58cac94bf30835f16a9c41d530 (diff) |
installer: Add NTFS support.
This adds support for creating and editing NTFS partitions. It is however not
possible yet to create root NTFS partitions, as overlaying on top of a fuse
partition does not seem supported.
* gnu/installer.scm (installer-program): Add "ntfs-3g" to the inputs.
* gnu/installer/parted.scm (user-fs-type-name, user-fs-type->mount-type,
partition-filesystem-user-type, create-ntfs-file-system,
format-user-partitions): Add NTFS support.
* gnu/installer/newt/partition.scm (run-fs-type-page): Add NTFS support.
Diffstat (limited to 'gnu/installer.scm')
-rw-r--r-- | gnu/installer.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/installer.scm b/gnu/installer.scm index 2c7315bde0..cb2f5ad2ca 100644 --- a/gnu/installer.scm +++ b/gnu/installer.scm @@ -320,6 +320,7 @@ selected keymap." e2fsprogs ;mkfs.ext4 btrfs-progs jfsutils ;jfs_mkfs + ntfs-3g ;mkfs.ntfs kbd ;chvt guix ;guix system init call util-linux ;mkwap |