From ecdf5f53ff1e501a7042ebbb10ba2ab262524992 Mon Sep 17 00:00:00 2001 From: Thomas Monjalon Date: Mon, 3 Feb 2014 18:40:56 +0100 Subject: [PATCH] tools: rename pci_unbind script In order to make this tool available among other system commands, the name must be more specific. Signed-off-by: Thomas Monjalon Acked-by: Chris Wright --- tools/{pci_unbind.py => igb_uio_bind.py} | 0 tools/setup.sh | 16 ++++++++-------- 2 files changed, 8 insertions(+), 8 deletions(-) rename tools/{pci_unbind.py => igb_uio_bind.py} (100%) diff --git a/tools/pci_unbind.py b/tools/igb_uio_bind.py similarity index 100% rename from tools/pci_unbind.py rename to tools/igb_uio_bind.py diff --git a/tools/setup.sh b/tools/setup.sh index 08ce54419c..39be8fc2fd 100755 --- a/tools/setup.sh +++ b/tools/setup.sh @@ -324,13 +324,13 @@ grep_meminfo() } # -# Calls pci_unbind.py --status to show the NIC and what they +# Calls igb_uio_bind.py --status to show the NIC and what they # are all bound to, in terms of drivers. # show_nics() { if /sbin/lsmod | grep -q igb_uio ; then - ${RTE_SDK}/tools/pci_unbind.py --status + ${RTE_SDK}/tools/igb_uio_bind.py --status else echo "# Please load the 'igb_uio' kernel module before querying or " echo "# adjusting NIC device bindings" @@ -338,16 +338,16 @@ show_nics() } # -# Uses pci_unbind.py to move devices to work with igb_uio +# Uses igb_uio_bind.py to move devices to work with igb_uio # bind_nics() { if /sbin/lsmod | grep -q igb_uio ; then - ${RTE_SDK}/tools/pci_unbind.py --status + ${RTE_SDK}/tools/igb_uio_bind.py --status echo "" echo -n "Enter PCI address of device to bind to IGB UIO driver: " read PCI_PATH - sudo ${RTE_SDK}/tools/pci_unbind.py -b igb_uio $PCI_PATH && echo "OK" + sudo ${RTE_SDK}/tools/igb_uio_bind.py -b igb_uio $PCI_PATH && echo "OK" else echo "# Please load the 'igb_uio' kernel module before querying or " echo "# adjusting NIC device bindings" @@ -355,18 +355,18 @@ bind_nics() } # -# Uses pci_unbind.py to move devices to work with kernel drivers again +# Uses igb_uio_bind.py to move devices to work with kernel drivers again # unbind_nics() { - ${RTE_SDK}/tools/pci_unbind.py --status + ${RTE_SDK}/tools/igb_uio_bind.py --status echo "" echo -n "Enter PCI address of device to bind to IGB UIO driver: " read PCI_PATH echo "" echo -n "Enter name of kernel driver to bind the device to: " read DRV - sudo ${RTE_SDK}/tools/pci_unbind.py -b $DRV $PCI_PATH && echo "OK" + sudo ${RTE_SDK}/tools/igb_uio_bind.py -b $DRV $PCI_PATH && echo "OK" } # -- 2.20.1