[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] nsis: Install *.elf images
From: |
Alistair Francis |
Subject: |
Re: [PATCH] nsis: Install *.elf images |
Date: |
Tue, 30 Mar 2021 12:15:34 -0400 |
On Fri, Mar 26, 2021 at 2:22 AM Bin Meng <bmeng.cn@gmail.com> wrote:
>
> As of today, the QEMU Windows installer does not include the
> following two RISC-V BIOS images:
>
> - opensbi-riscv64-generic-fw_dynamic.elf
> - opensbi-riscv32-generic-fw_dynamic.elf
>
> Update the installer script to include them.
>
> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Alistair
>
> ---
> Based on:
> https://repo.or.cz/qemu/ar7.git/commit/657a6a90b69da971afdc71501c30275ba307ff6c
>
> The above commit does not land on QEMU master. I am not sure what
> the process is, sending it here for comments.
>
> qemu.nsi | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/qemu.nsi b/qemu.nsi
> index 96c5534254..aeabe3bdbe 100644
> --- a/qemu.nsi
> +++ b/qemu.nsi
> @@ -142,6 +142,7 @@ Section "${PRODUCT}" QEMU_System_File_Section_Description
>
> File "${DATADIR}\*.bin"
> File "${DATADIR}\*.dtb"
> + File "${DATADIR}\*.elf"
> File "${DATADIR}\*.fd"
> File "${DATADIR}\*.img"
> File "${DATADIR}\*.lid"
> @@ -258,6 +259,7 @@ Section "Uninstall" Uninstall_Section_Description
> Delete "$INSTDIR\*.bin"
> Delete "$INSTDIR\*.dll"
> Delete "$INSTDIR\*.dtb"
> + Delete "$INSTDIR\*.elf"
> Delete "$INSTDIR\*.fd"
> Delete "$INSTDIR\*.img"
> Delete "$INSTDIR\*.lid"
> --
> 2.25.1
>
>