[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/14: uuid: Add support for bcachefs.
From: |
guix-commits |
Subject: |
10/14: uuid: Add support for bcachefs. |
Date: |
Sat, 7 Nov 2020 07:41:26 -0500 (EST) |
nckx pushed a commit to branch master
in repository guix.
commit e87471dc510bc393e3306fba86f919dc6bf89b7b
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Thu Nov 5 13:14:23 2020 +0100
uuid: Add support for bcachefs.
* gnu/system/uuid.scm (string->bcachefs-uuid): New exported procedure.
(%uuid-parsers, %uuid-printers): Add the ‘bcachefs’ file system type.
---
gnu/system/uuid.scm | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/gnu/system/uuid.scm b/gnu/system/uuid.scm
index c8352f4..f4c4be6 100644
--- a/gnu/system/uuid.scm
+++ b/gnu/system/uuid.scm
@@ -1,7 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2017 Danny Milosavljevic <dannym@scratchpost.org>
-;;; Copyright © 2019 Tobias Geerinckx-Rice <me@tobias.gr>
+;;; Copyright © 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -42,6 +42,7 @@
string->ext2-uuid
string->ext3-uuid
string->ext4-uuid
+ string->bcachefs-uuid
string->btrfs-uuid
string->fat-uuid
string->jfs-uuid
@@ -236,6 +237,7 @@ ISO9660 UUID representation."
(define string->ext2-uuid string->dce-uuid)
(define string->ext3-uuid string->dce-uuid)
(define string->ext4-uuid string->dce-uuid)
+(define string->bcachefs-uuid string->dce-uuid)
(define string->btrfs-uuid string->dce-uuid)
(define string->jfs-uuid string->dce-uuid)
@@ -251,14 +253,14 @@ ISO9660 UUID representation."
(define %uuid-parsers
(vhashq
- ('dce 'ext2 'ext3 'ext4 'btrfs 'jfs 'luks => string->dce-uuid)
+ ('dce 'ext2 'ext3 'ext4 'bcachefs 'btrfs 'jfs 'luks => string->dce-uuid)
('fat32 'fat16 'fat => string->fat-uuid)
('ntfs => string->ntfs-uuid)
('iso9660 => string->iso9660-uuid)))
(define %uuid-printers
(vhashq
- ('dce 'ext2 'ext3 'ext4 'btrfs 'jfs 'luks => dce-uuid->string)
+ ('dce 'ext2 'ext3 'ext4 'bcachefs 'btrfs 'jfs 'luks => dce-uuid->string)
('iso9660 => iso9660-uuid->string)
('fat32 'fat16 'fat => fat-uuid->string)
('ntfs => ntfs-uuid->string)))
- branch master updated (501b325 -> 83dee0e), guix-commits, 2020/11/07
- 01/14: gnu: Add firebird., guix-commits, 2020/11/07
- 05/14: gnu: shotwell: Update to 0.30.11., guix-commits, 2020/11/07
- 03/14: gnu: libscrypt: Add a :static output., guix-commits, 2020/11/07
- 08/14: gnu: kdenlive: Update to 20.08.3., guix-commits, 2020/11/07
- 10/14: uuid: Add support for bcachefs.,
guix-commits <=
- 02/14: gnu: libreoffice: Enable LibreOffice Base., guix-commits, 2020/11/07
- 09/14: file-systems: Add support for bcachefs., guix-commits, 2020/11/07
- 13/14: gnu: thermald: Update to 2.3., guix-commits, 2020/11/07
- 04/14: gnu: bcachefs-tools: Update to 0.1-1.742dbbd., guix-commits, 2020/11/07
- 12/14: gnu: thermald: Correct licence., guix-commits, 2020/11/07
- 07/14: gnu: samba: Update to 4.13.2., guix-commits, 2020/11/07
- 06/14: gnu: system-config-printer: Update to 1.5.13., guix-commits, 2020/11/07
- 11/14: linux-boot: Resume from hibernation., guix-commits, 2020/11/07
- 14/14: doc: Fix Zabbix ‘db-secret-file’ documentation., guix-commits, 2020/11/07