Notes/src/VGA Passthrough/VGA Passthrough (Manjaro)/Scripts/vfio-install

24 lines
423 B
Bash

#!/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 $@;