mirror of
https://gitee.com/openharmony/third_party_mesa3d
synced 2024-11-23 07:19:50 +00:00
b82f920384
It doesn't contain anything about the vsocks, just files shared between the host and the guest. Reviewed-by: Cristian Ciocaltea <cristian.ciocaltea@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16485>
43 lines
1.1 KiB
Bash
Executable File
43 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
VSOCK_STDOUT=$1
|
|
VSOCK_STDERR=$2
|
|
VM_TEMP_DIR=$3
|
|
|
|
mount -t proc none /proc
|
|
mount -t sysfs none /sys
|
|
mkdir -p /dev/pts
|
|
mount -t devpts devpts /dev/pts
|
|
mount -t tmpfs tmpfs /tmp
|
|
|
|
. ${VM_TEMP_DIR}/crosvm-env.sh
|
|
|
|
# .gitlab-ci.yml script variable is using relative paths to install directory,
|
|
# so change to that dir before running `crosvm-script`
|
|
cd "${CI_PROJECT_DIR}"
|
|
|
|
# The exception is the dEQP binary, as it needs to run from its own directory
|
|
[ -z "${DEQP_BIN_DIR}" ] || cd "${DEQP_BIN_DIR}"
|
|
|
|
# Use a FIFO to collect relevant error messages
|
|
STDERR_FIFO=/tmp/crosvm-stderr.fifo
|
|
mkfifo -m 600 ${STDERR_FIFO}
|
|
|
|
dmesg --level crit,err,warn -w > ${STDERR_FIFO} &
|
|
DMESG_PID=$!
|
|
|
|
# Transfer the errors and crosvm-script output via a pair of virtio-vsocks
|
|
socat -d -u pipe:${STDERR_FIFO} vsock-listen:${VSOCK_STDERR} &
|
|
socat -d -U vsock-listen:${VSOCK_STDOUT} \
|
|
system:"stdbuf -eL sh ${VM_TEMP_DIR}/crosvm-script.sh 2> ${STDERR_FIFO}; echo \$? > ${VM_TEMP_DIR}/exit_code",nofork
|
|
|
|
kill ${DMESG_PID}
|
|
wait
|
|
|
|
sync
|
|
poweroff -d -n -f || true
|
|
|
|
sleep 1 # Just in case init would exit before the kernel shuts down the VM
|