From c11f0fca36a39ad4c9feba2ddfd6568af61af270 Mon Sep 17 00:00:00 2001
From: Yuki Okushi <huyuumi.dev@gmail.com>
Date: Tue, 14 Apr 2020 03:24:16 +0900
Subject: [PATCH] Remove unused `run-qemu.sh`

---
 ci/run-qemu.sh | 34 ----------------------------------
 1 file changed, 34 deletions(-)
 delete mode 100644 ci/run-qemu.sh

diff --git a/ci/run-qemu.sh b/ci/run-qemu.sh
deleted file mode 100644
index 6fba6298..00000000
--- a/ci/run-qemu.sh
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/usr/bin/env sh
-
-# Initial script which is run inside of all qemu images. The first argument to
-# this script (as arranged by the qemu image itself) is the path to where the
-# libc crate is mounted.
-#
-# For qemu images we currently need to install Rust manually as this wasn't done
-# by the initial run-travis.sh script
-#
-# FIXME: feels like run-travis.sh should be responsible for downloading the
-#        compiler.
-
-set -ex
-
-ROOT="${1}"
-cp -r "${ROOT}/libc" /tmp/libc
-cd /tmp/libc
-
-TARGET="$(cat "${ROOT}/TARGET")"
-export CARGO_TARGET_DIR=/tmp
-
-case $TARGET in
-  *-openbsd)
-    pkg_add cargo gcc%4.9 rust
-    export CC=egcc
-    ;;
-
-  *)
-    echo "Unknown target: ${TARGET}"
-    exit 1
-    ;;
-esac
-
-exec sh ci/run.sh "${TARGET}"
-- 
GitLab