[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
26/28: linux-initrd: Add support for JFS.
From: |
guix-commits |
Subject: |
26/28: linux-initrd: Add support for JFS. |
Date: |
Fri, 3 Jan 2020 07:54:47 -0500 (EST) |
nckx pushed a commit to branch master
in repository guix.
commit c7b5cfb014243528f481e8bb95b7a58de17d0772
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Tue Dec 31 01:37:23 2019 +0100
linux-initrd: Add support for JFS.
* gnu/system/linux-initrd.scm (file-system-packages): Add jfs_fsck/static.
(file-system-type-modules): Add ‘jfs’ module.
---
gnu/system/linux-initrd.scm | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/gnu/system/linux-initrd.scm b/gnu/system/linux-initrd.scm
index 0efb8fb..dcc9b6b 100644
--- a/gnu/system/linux-initrd.scm
+++ b/gnu/system/linux-initrd.scm
@@ -3,6 +3,7 @@
;;; Copyright © 2016 Mark H Weaver <address@hidden>
;;; Copyright © 2016 Jan Nieuwenhuizen <address@hidden>
;;; Copyright © 2017, 2019 Mathieu Othacehe <address@hidden>
+;;; Copyright © 2019 Tobias Geerinckx-Rice <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -30,6 +31,7 @@
#:use-module (gnu packages compression)
#:use-module (gnu packages disk)
#:use-module (gnu packages linux)
+ #:use-module (gnu packages file-systems)
#:use-module (gnu packages guile)
#:use-module ((gnu packages xorg)
#:select (console-setup xkeyboard-config))
@@ -240,6 +242,9 @@ FILE-SYSTEMS."
'())
,@(if (find (file-system-type-predicate "btrfs") file-systems)
(list btrfs-progs/static)
+ '())
+ ,@(if (find (file-system-type-predicate "jfs") file-systems)
+ (list jfs_fsck/static)
'())))
(define-syntax vhash ;TODO: factorize
@@ -269,6 +274,7 @@ FILE-SYSTEMS."
("9p" => '("9p" "9pnet_virtio"))
("btrfs" => '("btrfs"))
("iso9660" => '("isofs"))
+ ("jfs" => '("jfs"))
(else '())))
(define (file-system-modules file-systems)
- 21/28: gnu: gloox: Update to 1.0.23., (continued)
- 21/28: gnu: gloox: Update to 1.0.23., guix-commits, 2020/01/03
- 17/28: gnu: padthv1: Update to 0.9.12., guix-commits, 2020/01/03
- 18/28: gnu: qtractor: Update to 0.9.12., guix-commits, 2020/01/03
- 20/28: gnu: hexchat: Update to 2.14.3., guix-commits, 2020/01/03
- 24/28: gnu: Add jfsutils-static., guix-commits, 2020/01/03
- 27/28: tests: install: Test a JFS root file system., guix-commits, 2020/01/03
- 09/28: gnu: whois: Update to 5.5.4., guix-commits, 2020/01/03
- 25/28: gnu: Add jfs_fsck-static., guix-commits, 2020/01/03
- 19/28: gnu: tuxguitar: Update to 1.5.3., guix-commits, 2020/01/03
- 11/28: gnu: x42-plugins: Update to 20191215., guix-commits, 2020/01/03
- 26/28: linux-initrd: Add support for JFS.,
guix-commits <=
- 28/28: install: Add jfsutils to the installation image., guix-commits, 2020/01/03
- 23/28: uuid: Add support for JFS., guix-commits, 2020/01/03