diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-09-27 21:06:35 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-09-27 21:06:35 +0200 |
commit | 867e3c5553515e74ea2263a430bae4c337f4b84c (patch) | |
tree | 6a32db82c5755ed5543a547593771737956ec426 | |
parent | 81bb9b6665e253c42b078e752ec01020b7434e3f (diff) |
gnu: vm: Remove erroneous store reference.
* gnu/system/vm.scm (system-qemu-image): Remove reference from BOOT to
MINGETTY since MINGETTY may not be valid yet.
-rw-r--r-- | gnu/system/vm.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm index e4b663b37a..32322b27e6 100644 --- a/gnu/system/vm.scm +++ b/gnu/system/vm.scm @@ -594,8 +594,7 @@ You can log in as 'guest' or 'root' with no password. (boot (add-text-to-store store "boot" (object->string `(execl ,dmd-file "dmd" - "--config" ,dmd-conf)) - (list out))) + "--config" ,dmd-conf)))) (entries (list (menu-entry (label (string-append "GNU System with Linux-Libre " |