me
/
guix
Archived
1
0
Fork 0

gnu: QEMU: Don't provide --firmwarepath for user-mode binaries.

* gnu/packages/virtualization.scm (qemu)[arguments]: Remove --firmwarepath
from the user-mode emulation configure invocation.
Marius Bakke 2022-12-22 14:06:01 +01:00
parent c1d543203e
commit aeabddcfc5
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 0 additions and 4 deletions

View File

@ -318,16 +318,12 @@
(lambda* (#:key inputs outputs #:allow-other-keys)
(let* ((static (assoc-ref outputs "static"))
(gcc (search-input-file inputs "/bin/gcc"))
(seabios (search-input-file inputs "/share/firmware/bios.bin"))
;; This is the common set of configure flags; it is
;; duplicated here to isolate this phase from manipulations
;; to the #:configure-flags build argument, as done in
;; derived packages such as qemu-minimal.
(configure-flags (list (string-append "--cc=" gcc)
(string-append "--host-cc=" gcc)
(string-append "--firmwarepath="
#$output "/share/qemu:"
(dirname seabios))
"--sysconfdir=/etc"
"--disable-debug-info")))
(mkdir-p "../user-static")