qubes-core-admin-linux/dracut/modules.d/90qubes-pciback/qubes-pciback.sh

9 lines
290 B
Bash
Raw Normal View History

2013-03-16 18:52:16 +00:00
#!/bin/sh
# Find all networking devices currenly installed...
HIDE_PCI=`lspci -mm -n | grep '^[^ ]* "02'|awk '{ ORS="";print "(" $1 ")";}'`
# ... and hide them so that Dom0 doesn't load drivers for them
modprobe pciback hide=$HIDE_PCI 2> /dev/null || modprobe xen-pciback hide=$HIDE_PCI