summaryrefslogtreecommitdiff
path: root/scripts/create-binary-archive.sh
diff options
context:
space:
mode:
authorAnup Patel <[email protected]>2020-05-01 12:06:56 +0530
committerAnup Patel <[email protected]>2020-05-04 10:09:23 +0530
commit13717a8e53a382769e9678f6d9357c20446cde0c (patch)
treec8f2cf26d55e8078ba6f8a13d28663e0fea99fc1 /scripts/create-binary-archive.sh
parent4f18c6e55049d858c62e87d2605dd41c06956e4e (diff)
platform: Remove qemu/virt directory
The OpenSBI generic platform works perfectly fine on the QEMU virt machine so let's remove dedicated QEMU virt machine platform from OpenSBI. All QEMU virt machine related documentation in OpenSBI will now suggest using OpenSBI generic platform. Signed-off-by: Anup Patel <[email protected]> Reviewed-by: Bin Meng <[email protected]> Reviewed-by: Alistair Francis <[email protected]>
Diffstat (limited to 'scripts/create-binary-archive.sh')
-rwxr-xr-xscripts/create-binary-archive.sh6
1 files changed, 2 insertions, 4 deletions
diff --git a/scripts/create-binary-archive.sh b/scripts/create-binary-archive.sh
index c2575ab2..32e53cf9 100755
--- a/scripts/create-binary-archive.sh
+++ b/scripts/create-binary-archive.sh
@@ -95,14 +95,12 @@ build_opensbi() {
case "${BUILD_RISCV_XLEN}" in
32)
# Setup 32-bit platform list
- BUILD_PLATFORM_SUBDIR=("qemu/virt")
- BUILD_PLATFORM_SUBDIR+=("sifive/fu540")
+ BUILD_PLATFORM_SUBDIR=("sifive/fu540")
BUILD_PLATFORM_SUBDIR+=("generic")
;;
64)
# Setup 64-bit platform list
- BUILD_PLATFORM_SUBDIR=("qemu/virt")
- BUILD_PLATFORM_SUBDIR+=("sifive/fu540")
+ BUILD_PLATFORM_SUBDIR=("sifive/fu540")
BUILD_PLATFORM_SUBDIR+=("nuclei/ux600")
BUILD_PLATFORM_SUBDIR+=("kendryte/k210")
BUILD_PLATFORM_SUBDIR+=("fpga/ariane")