[PATCH qemu] spapr/vof: Install rom and nvram binaries

Alexey Kardashevskiy posted 1 patch 3 years, 12 months ago
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20220208103751.1587902-1-aik@ozlabs.ru
pc-bios/meson.build | 2 ++
1 file changed, 2 insertions(+)
[PATCH qemu] spapr/vof: Install rom and nvram binaries
Posted by Alexey Kardashevskiy 3 years, 12 months ago
This installs VOF-related binaries (the firmware and the preformatted
NVRAM) as those were left out when the VOF was submitted initially.

Fixes: fc8c745d5015 ("spapr: Implement Open Firmware client interface")
Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
---
 pc-bios/meson.build | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/pc-bios/meson.build b/pc-bios/meson.build
index 4ac7a5509b69..c86dedf7dff9 100644
--- a/pc-bios/meson.build
+++ b/pc-bios/meson.build
@@ -81,6 +81,8 @@ blobs = files(
   'opensbi-riscv32-generic-fw_dynamic.bin',
   'opensbi-riscv64-generic-fw_dynamic.bin',
   'npcm7xx_bootrom.bin',
+  'vof.bin',
+  'vof-nvram.bin',
 )
 
 if get_option('install_blobs')
-- 
2.30.2


Re: [PATCH qemu] spapr/vof: Install rom and nvram binaries
Posted by Cédric Le Goater 3 years, 12 months ago
On 2/8/22 11:37, Alexey Kardashevskiy wrote:
> This installs VOF-related binaries (the firmware and the preformatted
> NVRAM) as those were left out when the VOF was submitted initially.
> 
> Fixes: fc8c745d5015 ("spapr: Implement Open Firmware client interface")
> Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
> ---
>   pc-bios/meson.build | 2 ++
>   1 file changed, 2 insertions(+)
> 
> diff --git a/pc-bios/meson.build b/pc-bios/meson.build
> index 4ac7a5509b69..c86dedf7dff9 100644
> --- a/pc-bios/meson.build
> +++ b/pc-bios/meson.build
> @@ -81,6 +81,8 @@ blobs = files(
>     'opensbi-riscv32-generic-fw_dynamic.bin',
>     'opensbi-riscv64-generic-fw_dynamic.bin',
>     'npcm7xx_bootrom.bin',
> +  'vof.bin',
> +  'vof-nvram.bin',
>   )
>   
>   if get_option('install_blobs')
> 


Applied to ppc-7.0.

Thanks,

C.