Added vga passthrough notes...

This commit is contained in:
2021-02-25 15:51:00 -06:00
parent c0a5e1f876
commit 144c110b73
15 changed files with 202 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
#!/bin/bash
# . CONFIG.sh
# set -o xtrace ## To debug scripts
# set -o errexit ## To exit on error
# set -o errunset ## To exit if a variable is referenced but not set
build() {
add_file /usr/bin/vfio-pci-override.sh
add_runscript
}
function main() {
SCRIPTPATH="$( cd "$(dirname "")" >/dev/null 2>&1 ; pwd -P )"
cd "${SCRIPTPATH}"
echo "Working Dir: " $(pwd)
build
}
main $@;