[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#38860] [PATCH 4/7] gnu: Add jfs_fsck-static.
From: |
Tobias Geerinckx-Rice |
Subject: |
[bug#38860] [PATCH 4/7] gnu: Add jfs_fsck-static. |
Date: |
Thu, 2 Jan 2020 01:38:59 +0100 |
* gnu/packages/file-systems.scm (jfs_fsck-static): New public variable.
---
gnu/packages/file-systems.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm
index 3a8848b3ad..a3dc993055 100644
--- a/gnu/packages/file-systems.scm
+++ b/gnu/packages/file-systems.scm
@@ -28,6 +28,7 @@
#:use-module (guix build-system cmake)
#:use-module (guix build-system gnu)
#:use-module (guix build-system linux-module)
+ #:use-module (guix build-system trivial)
#:use-module (guix utils)
#:use-module (gnu packages)
#:use-module (gnu packages acl)
@@ -154,6 +155,38 @@ transaction log.
`(("util-linux:static" ,util-linux "static")
,@(package-inputs jfsutils))))))
+(define-public jfs_fsck/static
+ (package
+ (name "jfs_fsck-static")
+ (version (package-version jfsutils))
+ (source #f)
+ (build-system trivial-build-system)
+ (arguments
+ `(#:modules ((guix build utils))
+ #:builder
+ (begin
+ (use-modules (guix build utils)
+ (ice-9 ftw)
+ (srfi srfi-26))
+ (let* ((jfsutils (assoc-ref %build-inputs "jfsutils"))
+ (fsck "jfs_fsck")
+ (out (assoc-ref %outputs "out"))
+ (sbin (string-append out "/sbin")))
+ (mkdir-p sbin)
+ (with-directory-excursion sbin
+ (install-file (string-append jfsutils "/sbin/" fsck)
+ ".")
+ (remove-store-references fsck)
+ (chmod fsck #o555))
+ #t))))
+ (inputs
+ `(("jfsutils" ,jfsutils/static)))
+ (home-page (package-home-page jfsutils))
+ (synopsis "Statically-linked jfs_fsck command from jfsutils")
+ (description "This package provides statically-linked jfs_fsck command
taken
+from the jfsutils package. It is meant to be used in initrds.")
+ (license (package-license jfsutils))))
+
(define-public disorderfs
(package
(name "disorderfs")
--
2.23.0
- [bug#38860] Support JFS!, Tobias Geerinckx-Rice, 2020/01/01
- [bug#38860] [PATCH 1/7] file-systems: Add support for JFS., Tobias Geerinckx-Rice, 2020/01/01
- [bug#38860] [PATCH 3/7] gnu: Add jfsutils-static., Tobias Geerinckx-Rice, 2020/01/01
- [bug#38860] [PATCH 4/7] gnu: Add jfs_fsck-static.,
Tobias Geerinckx-Rice <=
- [bug#38860] [PATCH 7/7] install: Add jfsutils to the installation image., Tobias Geerinckx-Rice, 2020/01/01
- [bug#38860] [PATCH 2/7] uuid: Add support for JFS., Tobias Geerinckx-Rice, 2020/01/01
- [bug#38860] [PATCH 5/7] linux-initrd: Add support for JFS., Tobias Geerinckx-Rice, 2020/01/01
- [bug#38860] [PATCH 6/7] tests: install: Test a JFS root file system., Tobias Geerinckx-Rice, 2020/01/01
- [bug#38860] Support JFS!, Danny Milosavljevic, 2020/01/02