' content='cgit v1.2.3'/>
aboutsummaryrefslogtreecommitdiff
path: root/gnu/system/uuid.scm
AgeCommit message (Collapse)Author
2021-09-23uuid: Support XFS.Tobias Geerinckx-Rice
* gnu/system/uuid.scm (string->xfs-uuid): New procedure. (%uuid-parsers, %uuid-printers): Add ‘xfs’ file system type.
2020-11-07uuid: Add support for bcachefs.Tobias Geerinckx-Rice
* gnu/system/uuid.scm (string->bcachefs-uuid): New exported procedure. (%uuid-parsers, %uuid-printers): Add the ‘bcachefs’ file system type.
2020-07-26file-systems: Add NTFS support.Mathieu Othacehe
* gnu/system/uuid.scm (%ntfs-endianness): New macro, (ntfs-uuid->string): new procedure, (%ntfs-endianness): new variable, (string->ntfs-uuid): new exported procedure, (%uuid-parsers): add NTFS support, (%uuid-printers): add NTFS support. * gnu/build/file-systems.scm (%ntfs-endianness): New macro, (ntfs-superblock?, read-ntfs-superblock, ntfs-superblock-uuid, check-ntfs-file-system): new procedure, (%partition-uuid-readers): add NTFS support, (check-file-system): add NTFS support.
2020-06-18uuid: Prevent a loop on invalid arguments.Maxim Cournoyer
* gnu/system/uuid.scm (uuid=?): Use type predicates in the fallback case to prevent looping on invalid arguments.