We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45cbc6d commit 863c558Copy full SHA for 863c558
src/detection/gpu/gpu_pci.c
@@ -45,8 +45,10 @@ static const FFstrbuf* loadPciIds()
45
if (pciids.length == 0)
46
ffReadFileBuffer(FASTFETCH_TARGET_DIR_USR "/local/share/hwdata/pci.ids", &pciids);
47
}
48
- #elif __FreeBSD__ || __OpenBSD__ || __NetBSD__
+ #elif __FreeBSD__ || __NetBSD__
49
ffReadFileBuffer(_PATH_LOCALBASE "/share/pciids/pci.ids", &pciids);
50
+ #elif __OpenBSD__
51
+ ffReadFileBuffer(_PATH_LOCALBASE "/share/hwdata/pci.ids", &pciids);
52
#elif __sun
53
ffReadFileBuffer(FASTFETCH_TARGET_DIR_ROOT "/usr/share/hwdata/pci.ids", &pciids);
54
#elif __HAIKU__
0 commit comments