mirror of
https://github.com/smxi/inxi.git
synced 2024-11-17 00:31:19 +00:00
added card type
This commit is contained in:
parent
fa2166c105
commit
46671c817b
4
inxi
4
inxi
|
@ -462,7 +462,7 @@ BAN_LIST_CPU=''
|
|||
|
||||
### USB networking search string data, because some brands can have other products than
|
||||
### wifi/nic cards, they need further identifiers, with wildcards.
|
||||
USB_NETWORK_SEARCH="Atmel Linksys Netgear Realtek.*Network Realtek.*Wireless Realtek.*WLAN"
|
||||
USB_NETWORK_SEARCH="Atmel Davicom Linksys Netgear Realtek.*Network Realtek.*Wireless Realtek.*WLAN"
|
||||
|
||||
# WARNING: In the main part below (search for 'KONVI')
|
||||
# there's a check for Konversation-specific config files.
|
||||
|
@ -3317,6 +3317,8 @@ get_networking_data()
|
|||
{
|
||||
gsub( /,/, " ", $0 )
|
||||
gsub(/'"$BAN_LIST_NORMAL"'/, "", $0)
|
||||
gsub(/realtek semiconductor/, "Realtek", $0)
|
||||
gsub(/davicom semiconductor/, "Davicom", $0)
|
||||
for ( i=7; i<= NF; i++ ) {
|
||||
string = string separator $i
|
||||
separator = " "
|
||||
|
|
Loading…
Reference in a new issue