diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-01-31 01:43:16 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-01-31 01:43:16 +0100 |
commit | fc4bc4b6debecf9acc7e86ecb519c03b5b598bc4 (patch) | |
tree | c70eaa5b91f85fa9d13d18684caacb4a22bfee93 /gnu/system.scm | |
parent | 83b9e6a1854d4fb86f0269afac33200dce996f06 (diff) | |
download | guix-fc4bc4b6debecf9acc7e86ecb519c03b5b598bc4.tar guix-fc4bc4b6debecf9acc7e86ecb519c03b5b598bc4.tar.gz |
gnu: linux-initrd: Properly distinguish between /dev/sda* and /dev/vda*.
* guix/build/linux-initrd.scm (make-essential-device-nodes): Rename
devices with major = 8 to /dev/sda*. Make /dev/vda* devices.
* gnu/system/vm.scm (qemu-image): Change '/dev/vda' to '/dev/sda'.
* gnu/system.scm (operating-system-derivation): Likewise.
Diffstat (limited to 'gnu/system.scm')
-rw-r--r-- | gnu/system.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/system.scm b/gnu/system.scm index 5fb4a7483e..e9ecfd2732 100644 --- a/gnu/system.scm +++ b/gnu/system.scm @@ -330,7 +330,7 @@ alias ll='ls -l' (package-full-name kernel) " (technology preview)")) (linux kernel) - (linux-arguments `("--root=/dev/vda1" + (linux-arguments `("--root=/dev/sda1" ,(string-append "--load=" boot))) (initrd initrd-file)))) (grub.cfg (grub-configuration-file entries)) |