Update Nvidia IDs

generated with:
```
#!/bin/bash

# curl -O https://pci-ids.ucw.cz/v2.2/pci.ids
PCI_IDS_FILE=pci.ids

NVIDIA_START=$(grep -n "^10de  NVIDIA Corporation" ${PCI_IDS_FILE} | cut -d : -f 1)
NVIDIA_START=$((NVIDIA_START+1))

NVIDIA_END=$(grep -n "^10df  Emulex Corporation" ${PCI_IDS_FILE} | cut -d : -f 1)
NVIDIA_END=$((NVIDIA_END-1))

sed -n ${NVIDIA_START}','${NVIDIA_END}'p' ${PCI_IDS_FILE} \
 | perl -nle 'print if /^\t[0-9a-f]{4}  [0-9A-Z]+ \[.*\]$/' \
 | perl -pe 's/^\t([0-9a-f]{4})  ([0-9A-Z]+) \[(.*)\]$/  { 0x10DE\U\1\E,  "\3" }, \/\/ \2/g'

```
This commit is contained in:
Florin9doi 2019-11-07 13:40:25 +02:00
parent 48d3c04f74
commit 652b89254f

View File

@ -1434,10 +1434,10 @@ static nvidia_pci_info_t nvidia_card_generic[] = {
// { 0x10DE1C80, "Graphics Device" }, // GP107
{ 0x10DE1C81, "GeForce GTX 1050" }, // GP107
{ 0x10DE1C82, "GeForce GTX 1050 Ti"}, // GP107
// 1D00 - 1EFFF
{ 0x10DE1D01, "GeForce GTX 1030"}, // family 138
{ 0x10DE1D10, "GeForce MX150"},
{ 0x10DE1F06, "GeForce RTX 2060 SUPER" }, // TU106
// 2000 - 1EFFF
};
static nvidia_card_info_t nvidia_card_exceptions[] = {