vm: Always use a native emulator in ‘guix system vm’.
Suggested by Zheng Junjie <zhengjunjie@iscas.ac.cn>. * gnu/system/vm.scm (system-qemu-image/shared-store-script)[qemu-exec]: Wrap first element in ‘with-parameters’. Change-Id: Iab9905aaa7e80bad0372c1ee7c3ea88a89564f8fmaster
parent
b47ae1ecc4
commit
d33965908d
|
@ -287,8 +287,11 @@ useful when FULL-BOOT? is true."
|
||||||
#~(format #f "/tmp/guix-image-~a" (basename #$base-image)))
|
#~(format #f "/tmp/guix-image-~a" (basename #$base-image)))
|
||||||
|
|
||||||
(define qemu-exec
|
(define qemu-exec
|
||||||
#~(list #+(file-append qemu "/bin/"
|
#~(list #+(with-parameters ((%current-system %system)
|
||||||
(qemu-command (or target system)))
|
(%current-target-system #f))
|
||||||
|
;; Override %CURRENT-SYSTEM to always use a native emulator.
|
||||||
|
(file-append qemu "/bin/"
|
||||||
|
(qemu-command (or target system))))
|
||||||
;; Tells qemu to use the terminal it was started in for IO.
|
;; Tells qemu to use the terminal it was started in for IO.
|
||||||
#$@(if graphic? '() #~("-nographic"))
|
#$@(if graphic? '() #~("-nographic"))
|
||||||
#$@(if full-boot?
|
#$@(if full-boot?
|
||||||
|
|
Reference in New Issue