me
/
guix
Archived
1
0
Fork 0

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: Iab9905aaa7e80bad0372c1ee7c3ea88a89564f8f
master
Ludovic Courtès 2024-04-16 19:02:17 +02:00
parent b47ae1ecc4
commit d33965908d
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 5 additions and 2 deletions

View File

@ -287,8 +287,11 @@ useful when FULL-BOOT? is true."
#~(format #f "/tmp/guix-image-~a" (basename #$base-image)))
(define qemu-exec
#~(list #+(file-append qemu "/bin/"
(qemu-command (or target system)))
#~(list #+(with-parameters ((%current-system %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.
#$@(if graphic? '() #~("-nographic"))
#$@(if full-boot?