gnu: Install QEMU firmare files to 'share/qemu'.
This paves the way for using a native search path in the future. * gnu/packages/bootloaders.scm (ipxe-qemu)[arguments]: Install firmware files to 'share/qemu' instead of 'share/firmware'. * gnu/packages/firmware.scm (seabios-qemu)[arguments]: Likewise. * gnu/packages/virtualization.scm (qemu)[arguments]: Adjust accordingly.
parent
ba7f6f0bf3
commit
209aed9511
|
@ -1577,7 +1577,7 @@ the features of iPXE without the hassle of reflashing.")
|
|||
#~(modify-phases #$phases
|
||||
(replace 'install
|
||||
(lambda _
|
||||
(let ((firmware (string-append #$output "/share/firmware")))
|
||||
(let ((firmware (string-append #$output "/share/qemu")))
|
||||
(mkdir-p firmware)
|
||||
(for-each
|
||||
(match-lambda
|
||||
|
|
|
@ -560,7 +560,7 @@ coreboot.")
|
|||
vgabiosen))))))
|
||||
(replace 'install
|
||||
(lambda _
|
||||
(let ((firmware (string-append #$output "/share/firmware")))
|
||||
(let ((firmware (string-append #$output "/share/qemu")))
|
||||
(for-each (lambda (bios)
|
||||
(install-file bios firmware))
|
||||
(find-files "out" "\\.bin$"))
|
||||
|
|
|
@ -198,9 +198,9 @@
|
|||
#~(let ((gcc (search-input-file %build-inputs "/bin/gcc"))
|
||||
(meson (search-input-file %build-inputs "bin/meson"))
|
||||
(seabios (search-input-file %build-inputs
|
||||
"share/firmware/bios.bin"))
|
||||
"share/qemu/bios.bin"))
|
||||
(ipxe (search-input-file %build-inputs
|
||||
"share/firmware/pxe-virtio.rom"))
|
||||
"share/qemu/pxe-virtio.rom"))
|
||||
(out #$output))
|
||||
(list (string-append "--cc=" gcc)
|
||||
;; Some architectures insist on using HOST_CC.
|
||||
|
@ -231,10 +231,10 @@
|
|||
(add-after 'unpack 'replace-firmwares
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(let* ((seabios (dirname (search-input-file
|
||||
inputs "share/firmware/bios.bin")))
|
||||
inputs "share/qemu/bios.bin")))
|
||||
(seabios-firmwares (find-files seabios "\\.bin$"))
|
||||
(ipxe (dirname (search-input-file
|
||||
inputs "share/firmware/pxe-virtio.rom")))
|
||||
inputs "share/qemu/pxe-virtio.rom")))
|
||||
(ipxe-firmwares (find-files ipxe "\\.rom$"))
|
||||
(allowed-differences
|
||||
;; Ignore minor differences (addresses etc) in the firmware
|
||||
|
|
Reference in New Issue