Lines Matching refs:driver
244 local bdf driver
258 while read -rp "Select driver ($bdf)> " driver; do
259 driver=${driver,,}
260 if [[ -z $driver ]]; then
263 if [[ $driver == "${pci_bus_driver["$bdf"]}" ]]; then
264 echo "$bdf already bound to $driver"
270 # Try to be nice and silently attempt to load the driver just in case
271 modprobe -q "$driver" || true
273 if yn "$bdf currently bound to ${pci_bus_driver["$bdf"]:-none}. Bind to $driver?"; then
274 linux_bind_driver "$bdf" "$driver"
286 main driver: $(collect_driver "$bdf")
287 current driver: ${pci_bus_driver["$bdf"]:-none}