mirror of
https://gitlab.com/risingprismtv/single-gpu-passthrough.git
synced 2024-12-22 13:45:22 +00:00
13 lines
204 B
Bash
Executable File
13 lines
204 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Script for win10
|
|
if [[ $1 == "win10" ]]; then
|
|
if [[ $2 == "prepare" ]]; then
|
|
/bin/polaris-vfio-startup.sh
|
|
fi
|
|
|
|
if [[ $2 == "release" ]]; then
|
|
/bin/polaris-vfio-teardown.sh
|
|
fi
|
|
fi
|