]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/commitdiff
Add default probenic output if driver doesnt export bus/name
authorArne Fitzenreiter <arne_f@ipfire.org>
Thu, 1 Oct 2009 18:28:48 +0000 (20:28 +0200)
committerArne Fitzenreiter <arne_f@ipfire.org>
Thu, 1 Oct 2009 18:28:48 +0000 (20:28 +0200)
Fix some output formating (remove usb vendor id)

src/install+setup/install/probenic.sh

index fcec6bd23bd95974ed43055f9a574797964db2b0..f8ab7e114e780ad62aca5b869d1d732e029515b2 100644 (file)
@@ -2,7 +2,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007  Michael Tremer & Christian Schmidt                      #
+# Copyright (C) 2009  Michael Tremer & Christian Schmidt                      #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -36,13 +36,21 @@ for card in `ls /sys/class/net`; do
 
                        driver=`grep PHYSDEVDRIVER= /sys/class/net/$card/uevent | cut -d"=" -f2`
                        type=`grep PHYSDEVBUS= /sys/class/net/$card/uevent | cut -d"=" -f2`
+
+                       #Default if not avaiable in /sys/class/net
+                       if [ "a$type" == "a" ]; then
+                               type="???"
+                       fi
+                       if [ "a$driver" == "a" ]; then
+                               driver="Unknown Network card"
+                       fi
                        description=`echo $type: $driver`
 
                        #Get more details for pci and usb devices
                        if [ "$type" == "pci" ]; then
                                slotname=`grep PCI_SLOT_NAME= /sys/class/net/$card/device/uevent | cut -d"=" -f2`
-                               name=`lspci -s $slotname | cut -d':' -f3`
-                               description=`echo $type:$name`
+                               name=`lspci -s $slotname | cut -d':' -f3 | cut -c 2-`
+                               description=`echo $type: $name`
                        fi
                        if [ "$type" == "usb" ]; then
                                bus=`grep DEVICE= /sys/class/net/$card/device/uevent | cut -d"/" -f5`
@@ -50,7 +58,7 @@ for card in `ls /sys/class/net`; do
                                #work around the base8 convert
                                let bus=`echo 1$bus`-1000
                                let dev=`echo 1$dev`-1000
-                               name=`lsusb -s $bus:$dev | cut -d':' -f3`
+                               name=`lsusb -s $bus:$dev | cut -d':' -f3 | cut -c 6-`
                                description=`echo $type: $name`
                        fi