Skip to content
Snippets Groups Projects
Commit ced0106a authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

linux-boot: Make more disk partition block devices.

Reported by nebuli on #guix.

* gnu/build/linux-boot.scm (make-disk-device-nodes): Make 16 block
  devices for disk partitions.
parent 5c88ac53
No related branches found
No related tags found
No related merge requests found
...@@ -93,7 +93,7 @@ (define* (make-disk-device-nodes base major #:optional (minor 0)) ...@@ -93,7 +93,7 @@ (define* (make-disk-device-nodes base major #:optional (minor 0))
with the given MAJOR number, starting with MINOR." with the given MAJOR number, starting with MINOR."
(mknod base 'block-special #o644 (device-number major minor)) (mknod base 'block-special #o644 (device-number major minor))
(let loop ((i 1)) (let loop ((i 1))
(when (< i 6) (when (< i 16)
(mknod (string-append base (number->string i)) (mknod (string-append base (number->string i))
'block-special #o644 (device-number major (+ minor i))) 'block-special #o644 (device-number major (+ minor i)))
(loop (+ i 1))))) (loop (+ i 1)))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment