From 3a631b8e7f36448cac4ffae1df4526bf079406ea Mon Sep 17 00:00:00 2001 From: Bin Meng Date: Mon, 22 Jun 2020 13:09:32 +0800 Subject: [PATCH] configure: Create symbolic links for pc-bios/*.elf files Now we need to ship the OpenSBI fw_dynamic.elf image for the RISC-V Spike machine, it requires us to create symbolic links for pc-bios/*.elf files. Signed-off-by: Bin Meng Reviewed-by: Alistair Francis Message-Id: <1596439832-29238-2-git-send-email-bmeng.cn@gmail.com> Signed-off-by: Alistair Francis --- configure | 1 + 1 file changed, 1 insertion(+) diff --git a/configure b/configure index 4e5fe33211..0a01802637 100755 --- a/configure +++ b/configure @@ -8129,6 +8129,7 @@ LINKS="$LINKS tests/qemu-iotests/check" LINKS="$LINKS python" for bios_file in \ $source_path/pc-bios/*.bin \ + $source_path/pc-bios/*.elf \ $source_path/pc-bios/*.lid \ $source_path/pc-bios/*.rom \ $source_path/pc-bios/*.dtb \