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

linux-initrd: Make /dev/ttyS0, for debugging.

* guix/build/linux-initrd.scm (make-essential-device-nodes): Make
  /dev/ttyS0.
parent 7d57cfd3
No related branches found
No related tags found
No related merge requests found
......@@ -124,6 +124,10 @@ (define (scope dir)
(device-number 4 n))
(loop (+ 1 n)))))
;; Serial line.
(mknod (scope "dev/ttyS0") 'char-special #o660
(device-number 4 64))
;; Pseudo ttys.
(mknod (scope "dev/ptmx") 'char-special #o666
(device-number 5 2))
......
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