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.
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
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