mirror of https://github.com/xemu-project/xemu.git
NSIS: Add missing firmware blobs
Various firmwares has been added in the pc-bios/ directory: - CCW (since commit0c1fecdd52
) - skiboot (since commitbcad45de6a
) - EDK2 (since commitf7fa38b74c
) Since we install qemu-system able to run the architectures targetted by these firmware, include them in the NSIS exe. Reviewed-by: Stefan Weil <sw@weilnetz.de> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20190723070218.3606-1-philmd@redhat.com> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
This commit is contained in:
parent
5deb2de1d6
commit
e54ecc70c3
11
qemu.nsi
11
qemu.nsi
|
@ -106,6 +106,9 @@ RequestExecutionLevel admin
|
||||||
;--------------------------------
|
;--------------------------------
|
||||||
|
|
||||||
; The stuff to install.
|
; The stuff to install.
|
||||||
|
;
|
||||||
|
; Remember to keep the "Uninstall" section in sync.
|
||||||
|
|
||||||
Section "${PRODUCT} (required)"
|
Section "${PRODUCT} (required)"
|
||||||
|
|
||||||
SectionIn RO
|
SectionIn RO
|
||||||
|
@ -122,6 +125,10 @@ Section "${PRODUCT} (required)"
|
||||||
File "${BINDIR}\*.bmp"
|
File "${BINDIR}\*.bmp"
|
||||||
File "${BINDIR}\*.bin"
|
File "${BINDIR}\*.bin"
|
||||||
File "${BINDIR}\*.dtb"
|
File "${BINDIR}\*.dtb"
|
||||||
|
File "${BINDIR}\*.fd"
|
||||||
|
File "${BINDIR}\*.img"
|
||||||
|
File "${BINDIR}\*.lid"
|
||||||
|
File "${BINDIR}\*.ndrv"
|
||||||
File "${BINDIR}\*.rom"
|
File "${BINDIR}\*.rom"
|
||||||
File "${BINDIR}\openbios-*"
|
File "${BINDIR}\openbios-*"
|
||||||
|
|
||||||
|
@ -210,6 +217,10 @@ Section "Uninstall"
|
||||||
Delete "$INSTDIR\*.bin"
|
Delete "$INSTDIR\*.bin"
|
||||||
Delete "$INSTDIR\*.dll"
|
Delete "$INSTDIR\*.dll"
|
||||||
Delete "$INSTDIR\*.dtb"
|
Delete "$INSTDIR\*.dtb"
|
||||||
|
Delete "$INSTDIR\*.fd"
|
||||||
|
Delete "$INSTDIR\*.img"
|
||||||
|
Delete "$INSTDIR\*.lid"
|
||||||
|
Delete "$INSTDIR\*.ndrv"
|
||||||
Delete "$INSTDIR\*.rom"
|
Delete "$INSTDIR\*.rom"
|
||||||
Delete "$INSTDIR\openbios-*"
|
Delete "$INSTDIR\openbios-*"
|
||||||
Delete "$INSTDIR\qemu-img.exe"
|
Delete "$INSTDIR\qemu-img.exe"
|
||||||
|
|
Loading…
Reference in New Issue