CloverBootloader/rEFIt_UEFI
Florin9doi 652b89254f 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'

```
2019-11-11 21:54:52 +02:00
..
entry_scan initial commit Clover sources 5061 and modules from EDK2 latest with legacy codes from UDK2018 2019-09-03 12:58:42 +03:00
include initial commit Clover sources 5061 and modules from EDK2 latest with legacy codes from UDK2018 2019-09-03 12:58:42 +03:00
libeg check for zero size allocation 2019-09-19 22:14:57 +03:00
Platform Update Nvidia IDs 2019-11-11 21:54:52 +02:00
refit implemented patch with mask for kext, kernel and booter 2019-10-08 23:57:18 +03:00
refit.inf add apple varibles to be erased 2019-10-22 15:00:07 +03:00