diff options
Diffstat (limited to 'scripts/vfio-bind')
-rwxr-xr-x | scripts/vfio-bind | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/vfio-bind b/scripts/vfio-bind new file mode 100755 index 0000000..f87f9c2 --- /dev/null +++ b/scripts/vfio-bind @@ -0,0 +1,12 @@ +#!/bin/bash + +modprobe vfio-pci + +for dev in "$@"; do + vendor=$(cat /sys/bus/pci/devices/$dev/vendor) + device=$(cat /sys/bus/pci/devices/$dev/device) + if [ -e /sys/bus/pci/devices/$dev/driver ]; then + echo $dev > /sys/bus/pci/devices/$dev/driver/unbind + fi + echo $vendor $device > /sys/bus/pci/drivers/vfio-pci/new_id +done |