Hi folks. I was having some issues with the "AMD Unsupported hardware" watermark with my Radeon 6370 using the privative driver. I found a solution here, which is the one that appears almost anywhere. Unluckily for me it didn't work. The problem was that it was referencing a file that didn't correspond to the actual driver file that my Ubuntu was loading.
In my case, the correct script is:
The original script had this line:#!/bin/sh
DRIVER=/usr/lib/fglrx/xorg/modules/drivers/fglrx_drv.so
for x in $(objdump -d $DRIVER|awk '/call/&&/EnableLogo/{print "\\x"$2"\\x"$3"\\x"$4"\\x"$5"\\x"$6}'); do
sed -i "s/$x/\x90\x90\x90\x90\x90/g" $DRIVER
done
But the the one that worked for me is:DRIVER=/usr/lib/xorg/modules/drivers/fglrx_drv.so
Hope it helpsDRIVER=/usr/lib/fglrx/xorg/modules/drivers/fglrx_drv.so![]()



Adv Reply

Bookmarks