hi guys,
does anybody know where i can find a list GPUs - with pciids enclosed - supported by latest AMD driver?
something like here but updated:
http://developer.amd.com/resources/hard ... d-1002-li/
http://amd-dev.wpengine.netdna-cdn.com/ ... _20121.txt
this info is needed for rc1 of upcoming Porteus release.
thank you in advance.
PCI IDs supported by latest AMD catalyst driver
- fanthom
- Moderator Team
- Posts: 5591
- Joined: 28 Dec 2010, 02:42
- Distribution: Porteus Kiosk
- Location: Poland
- Contact:
PCI IDs supported by latest AMD catalyst driver
Please add [Solved] to your thread title if the solution was found.
- brokenman
- Site Admin
- Posts: 6104
- Joined: 27 Dec 2010, 03:50
- Distribution: Porteus v4 all desktops
- Location: Brazil
- Contact:
Re: PCI IDs supported by latest AMD catalyst driver
Interesting that update-pciids is not kept up to date. Perhaps the sourceforge project is more up to date?
http://pciids.sourceforge.net/
http://www.pcidatabase.com/
http://pciids.sourceforge.net/
http://www.pcidatabase.com/
How do i become super user?
Wear your underpants on the outside and put on a cape.
Wear your underpants on the outside and put on a cape.
- fanthom
- Moderator Team
- Posts: 5591
- Joined: 28 Dec 2010, 02:42
- Distribution: Porteus Kiosk
- Location: Poland
- Contact:
Re: PCI IDs supported by latest AMD catalyst driver
yes - i was querying pciids database before:
but this is not reliable and latest generation is not labelled as 'Radeon HD' anymore, ie:
so i wanted to get some source directly from AMD, something like this page for nVidia:
http://www.nvidia.com/object/IO_32667.html
Code: Select all
egrep 'Radeon HD 5|Radeon HD 6|Radeon HD 7|Radeon HD 8' /usr/share/pci.ids | grep -v Audio | cut -d" " -f-2 | grep -v "#" | awk '{print$NF}' | sort | uniq > amd-catalyst
Code: Select all
grep Oland pci.ids
6610 Oland XT [Radeon HD 8670 / R7 250]
6611 Oland [Radeon HD 8570 / R7 240 OEM]
6613 Oland PRO [Radeon R7 240]
http://www.nvidia.com/object/IO_32667.html
Please add [Solved] to your thread title if the solution was found.
- fanthom
- Moderator Team
- Posts: 5591
- Joined: 28 Dec 2010, 02:42
- Distribution: Porteus Kiosk
- Location: Poland
- Contact:
Re: PCI IDs supported by latest AMD catalyst driver
i think i know how to do this - will read supported PCI IDS directly from the driver 
something like:
and then extract pciids. that should be the most reliable way ...
EDIT:\\
and the final command is:
works perfectly 

something like:
Code: Select all
grep fglrx /lib/modules/$(uname -r)/modules.pcimap
EDIT:\\
and the final command is:
Code: Select all
grep fglrx /lib/modules/`uname -r`/modules.alias | cut -ds -f2 | sed 's/ pci:v00001002d0000//' | sort > amd-catalyst

Please add [Solved] to your thread title if the solution was found.