linux-initrd: Add special-file->cpio-header*.
authorDanny Milosavljevic <dannym@scratchpost.org>
Sat, 7 Nov 2020 21:27:32 +0000 (22:27 +0100)
committerDanny Milosavljevic <dannym@scratchpost.org>
Sun, 22 Nov 2020 10:03:31 +0000 (11:03 +0100)
* guix/cpio.scm (special-file->cpio-header*): New public procedure.

guix/cpio.scm

index 5d38573..c9932f5 100644 (file)
@@ -27,6 +27,7 @@
             make-cpio-header
             file->cpio-header
             file->cpio-header*
+            special-file->cpio-header*
             write-cpio-header
             read-cpio-header
 
@@ -190,6 +191,25 @@ produced in a deterministic fashion."
                       #:size (stat:size st)
                       #:name-size (string-length file-name))))
 
+(define* (special-file->cpio-header* file
+                                     device-type
+                                     device-major
+                                     device-minor
+                                     permission-bits
+                                     #:optional (file-name file))
+  "Create a character or block device header.
+
+DEVICE-TYPE is either 'char-special or 'block-special.
+
+The number of hard links is assumed to be 1."
+  (make-cpio-header #:mode (logior (match device-type
+                                    ('block-special C_ISBLK)
+                                    ('char-special C_ISCHR))
+                                    permission-bits)
+                    #:nlink 1
+                    #:rdev (device-number device-major device-minor)
+                    #:name-size (string-length file-name)))
+
 (define %trailer
   "TRAILER!!!")