diff options
author | Danny Milosavljevic <dannym@scratchpost.org> | 2019-05-14 17:46:45 +0200 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2019-05-14 18:01:10 +0200 |
commit | 1a92f1ff1cc62f14b6b1b676af1474515058363e (patch) | |
tree | 011fbf2227d2d301febb0d0514488ce905d31e5e /gnu/installer | |
parent | 813e06ac671a5cdeb1ef573459b0de6514c6562c (diff) | |
download | patches-1a92f1ff1cc62f14b6b1b676af1474515058363e.tar patches-1a92f1ff1cc62f14b6b1b676af1474515058363e.tar.gz |
installer: Add fat16.
* gnu/installer/newt/partition.scm (run-fs-type-page): Add fat16.
Diffstat (limited to 'gnu/installer')
-rw-r--r-- | gnu/installer/newt/partition.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/installer/newt/partition.scm b/gnu/installer/newt/partition.scm index 5e9e63f156..7f1fb4de15 100644 --- a/gnu/installer/newt/partition.scm +++ b/gnu/installer/newt/partition.scm @@ -120,7 +120,7 @@ Be careful, all data on the disk will be lost.") (run-listbox-selection-page #:info-text (G_ "Please select the file-system type for this partition.") #:title (G_ "File-system type") - #:listbox-items '(ext4 btrfs fat32 swap) + #:listbox-items '(ext4 btrfs fat16 fat32 swap) #:listbox-item->text user-fs-type-name #:sort-listbox-items? #f #:button-text (G_ "Exit") |