summaryrefslogtreecommitdiff
path: root/gnu/installer.scm
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2020-01-03 19:26:54 +0100
committerTobias Geerinckx-Rice <me@tobias.gr>2020-01-05 02:40:07 +0100
commit8fec416cec6ffa5e2f1647eda8090fef1b0f71ac (patch)
tree5b7694d26a21746eff6d1b12817263849f5fee79 /gnu/installer.scm
parent1133596b426e7ff291fee024273fb7dd0af9564e (diff)
installer: Add JFS support.
* gnu/installer/newt/partition.scm (run-fs-type-page): Add ‘jfs’ to the list box. * gnu/installer/parted.scm (user-fs-type-name, user-fs-type->mount-type) (partition-filesystem-user-type): Add ‘jfs’ mapping (create-jfs-file-system): New procedure. (format-user-partitions): Use it. * gnu/installer.scm (set-installer-path): Add jfsutils.
Diffstat (limited to 'gnu/installer.scm')
-rw-r--r--gnu/installer.scm6
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/installer.scm b/gnu/installer.scm
index 167653263fc..1676a91801f 100644
--- a/gnu/installer.scm
+++ b/gnu/installer.scm
@@ -1,7 +1,7 @@
1;;; GNU Guix --- Functional package management for GNU 1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2018 Mathieu Othacehe <m.othacehe@gmail.com> 2;;; Copyright © 2018 Mathieu Othacehe <m.othacehe@gmail.com>
3;;; Copyright © 2019 Ludovic Courtès <ludo@gnu.org> 3;;; Copyright © 2019 Ludovic Courtès <ludo@gnu.org>
4;;; Copyright © 2019 Tobias Geerinckx-Rice <me@tobias.gr> 4;;; Copyright © 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
5;;; 5;;;
6;;; This file is part of GNU Guix. 6;;; This file is part of GNU Guix.
7;;; 7;;;
@@ -32,6 +32,7 @@
32 #:use-module (gnu packages connman) 32 #:use-module (gnu packages connman)
33 #:use-module (gnu packages cryptsetup) 33 #:use-module (gnu packages cryptsetup)
34 #:use-module (gnu packages disk) 34 #:use-module (gnu packages disk)
35 #:use-module (gnu packages file-systems)
35 #:use-module (gnu packages guile) 36 #:use-module (gnu packages guile)
36 #:use-module (gnu packages guile-xyz) 37 #:use-module (gnu packages guile-xyz)
37 #:autoload (gnu packages gnupg) (guile-gcrypt) 38 #:autoload (gnu packages gnupg) (guile-gcrypt)
@@ -295,7 +296,8 @@ selected keymap."
295 cryptsetup 296 cryptsetup
296 dosfstools ;mkfs.fat 297 dosfstools ;mkfs.fat
297 e2fsprogs ;mkfs.ext4 298 e2fsprogs ;mkfs.ext4
298 btrfs-progs 299 btrfs-progs ;mkfs.btrfs
300 jfsutils ;jfs_mkfs
299 kbd ;chvt 301 kbd ;chvt
300 guix ;guix system init call 302 guix ;guix system init call
301 util-linux ;mkwap 303 util-linux ;mkwap