gnu: linux-initrd: Make device nodes for QEMU's hard disk.

* gnu/packages/linux-initrd.scm (qemu-initrd): Make /dev/vda*.
master
Ludovic Courtès 2013-08-31 22:46:52 +02:00
parent 89bf140b10
commit b48d21b246
1 changed files with 5 additions and 0 deletions

View File

@ -270,6 +270,11 @@ the Linux kernel.")
(unless (configure-qemu-networking)
(display "network interface is DOWN\n"))
;; Make the device nodes for QEMU's hard disk and partitions.
(mknod "/dev/vda" 'block-special #o644 (device-number 8 0))
(mknod "/dev/vda1" 'block-special #o644 (device-number 8 1))
(mknod "/dev/vda2" 'block-special #o644 (device-number 8 2))
;; Prepare the real root file system under /root.
(unless (file-exists? "/root")
(mkdir "/root"))