tools: fix setup with built-in kernel modules
authorJerin Jacob <jerin.jacob@caviumnetworks.com>
Mon, 14 Mar 2016 12:15:32 +0000 (17:45 +0530)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Thu, 24 Mar 2016 21:04:10 +0000 (22:04 +0100)
probe the kernel module existence through /sys/module/ to make it work
with both module and inbuilt kernel module

Signed-off-by: Jerin Jacob <jerin.jacob@caviumnetworks.com>
tools/setup.sh

index b290b87..6097ab7 100755 (executable)
@@ -427,7 +427,7 @@ grep_meminfo()
 #
 show_nics()
 {
-       if  /sbin/lsmod | grep -q -e igb_uio -e vfio_pci; then
+       if [ -d /sys/module/vfio_pci -o -d /sys/module/igb_uio ]; then
                ${RTE_SDK}/tools/dpdk_nic_bind.py --status
        else
                echo "# Please load the 'igb_uio' or 'vfio-pci' kernel module before "
@@ -440,7 +440,7 @@ show_nics()
 #
 bind_nics_to_vfio()
 {
-       if /sbin/lsmod  | grep -q vfio_pci ; then
+       if [ -d /sys/module/vfio_pci ]; then
                ${RTE_SDK}/tools/dpdk_nic_bind.py --status
                echo ""
                echo -n "Enter PCI address of device to bind to VFIO driver: "
@@ -458,7 +458,7 @@ bind_nics_to_vfio()
 #
 bind_nics_to_igb_uio()
 {
-       if  /sbin/lsmod  | grep -q igb_uio ; then
+       if [ -d /sys/module/igb_uio ]; then
                ${RTE_SDK}/tools/dpdk_nic_bind.py --status
                echo ""
                echo -n "Enter PCI address of device to bind to IGB UIO driver: "