From 388f3cca5994fb550b38b3e974cc074256c751d1 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Tue, 6 Jun 2023 16:16:17 +0100 Subject: [PATCH] Rename them to match what qemu expects qemu is expecting names like 'opensbi-riscv64-generic-fw_dynamic.bin' so if we're going to rename them, might as well use the name that qemu expects. --- opensbi/opensbi.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opensbi/opensbi.spec b/opensbi/opensbi.spec index 8fe7739..1ec15cb 100644 --- a/opensbi/opensbi.spec +++ b/opensbi/opensbi.spec @@ -73,7 +73,7 @@ mkdir build32 build64 INSTALL_FIRMWARE_PATH=%{_datadir}/%{name} pushd %{buildroot}%{_datadir}/%{name}/generic/firmware for f in fw_*.bin fw_*.elf; do - mv $f riscv32_$f + mv $f opensbi-riscv32-generic-$f done popd @@ -87,7 +87,7 @@ popd INSTALL_FIRMWARE_PATH=%{_datadir}/%{name} pushd %{buildroot}%{_datadir}/%{name}/generic/firmware for f in fw_*.bin fw_*.elf; do - mv $f riscv64_$f + mv $f opensbi-riscv64-generic-$f done popd -- 1.8.3.1