diff options
| author | Clément Lassieur <clement@lassieur.org> | 2026-03-21 17:28:59 +0100 |
|---|---|---|
| committer | Cayetano Santos <csantosb@inventati.org> | 2026-03-22 19:25:31 +0100 |
| commit | 02cfa1f4d4ff00428671660b31b0afccb30a477e (patch) | |
| tree | 3aee2f6d69a635f70cea858ac1c3660b64b74ba8 /gnu | |
| parent | 61ad00c1ed9e86363f2c906f400c7be62d85e833 (diff) | |
gnu: genimage: Add Btrfs support.
* gnu/packages/flashing-tools.scm (genimage)[arguments]: Reference
‘mkfs.btrfs’ from its input.
[inputs]: Add ‘btrfs-progs’.
Merges guix/guix!7379
Change-Id: Idaa91a70967fa0b3adbfa8446a7e75ad3c970ebd
Signed-off-by: Cayetano Santos <csantosb@inventati.org>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/flashing-tools.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/flashing-tools.scm b/gnu/packages/flashing-tools.scm index b8272dd5641..48e9165cbdd 100644 --- a/gnu/packages/flashing-tools.scm +++ b/gnu/packages/flashing-tools.scm @@ -286,7 +286,8 @@ firmware from it.") (((format #f "\\.def = \"(~a)\"" regexp) _ command) (string-append ".def = \"" (assoc-ref inputs input) "/" directory "/" command "\""))))) - '(("cpio" "bin" "cpio") + '(("btrfs-progs" "bin" "mkfs.btrfs") + ("cpio" "bin" "cpio") ("coreutils" "bin" "dd") ("e2fsprogs" "sbin" "debugfs|e2fsck|mke2fs|tune2fs") ("genext2fs" "bin" "genext2fs") @@ -334,6 +335,7 @@ firmware from it.") util-linux)) ; for the tests (inputs `(("bash" ,bash) + ("btrfs-progs" ,btrfs-progs) ("cdrkit-libre" ,cdrkit-libre) ("cpio" ,cpio) ;; Note: invoked by final executable. |
