[Pkg-fglrx-devel] Bug#829036: fglrx-modules-dkms: fglrx-modules does not compile with kernel 4.6 (sid)
Amit Aronovitch
aronovitch at gmail.com
Wed Jun 29 21:42:45 UTC 2016
Package: fglrx-modules-dkms
Version: 1:15.12-2
Severity: important
Tags: upstream patch
Dear Maintainer,
Current fglrx kernel module (15.12-2) does not compile for linux 4.6,
which is the latest default on sid.
Attached patch allows this to compile and install properly.
Regards,
Amit A
diff -ru fglrx-15.12_orig/firegl_public.c fglrx-15.12/firegl_public.c
--- fglrx-15.12_orig/firegl_public.c 2016-01-23 02:24:25.000000000 +0200
+++ fglrx-15.12/firegl_public.c 2016-06-30 00:13:56.629382098 +0300
@@ -3228,7 +3228,11 @@
int ret;
down_read(¤t->mm->mmap_sem);
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,6,0)
+ ret = get_user_pages(vaddr, page_cnt, 1, 0, (struct page **)page_list, NULL);
+#else
ret = get_user_pages(current, current->mm, vaddr, page_cnt, 1, 0, (struct page **)page_list, NULL);
+#endif
up_read(¤t->mm->mmap_sem);
return ret;
@@ -3246,7 +3250,11 @@
int ret;
down_read(¤t->mm->mmap_sem);
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,6,0)
+ ret = get_user_pages(vaddr, page_cnt, 0, 0, (struct page **)page_list, NULL);
+#else
ret = get_user_pages(current, current->mm, vaddr, page_cnt, 0, 0, (struct page **)page_list, NULL);
+#endif
up_read(¤t->mm->mmap_sem);
return ret;
@@ -3257,7 +3265,11 @@
unsigned int i;
for (i=0; i<page_cnt; i++)
{
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,6,0)
+ put_page((struct page*)page_list[i]);
+#else
page_cache_release((struct page*)page_list[i]);
+#endif
}
}
-- Package-specific info:
Full fglrx package list:
ii fglrx-atieventsd 1:15.12-2 amd64 events daemon for the non-free ATI/AMD RadeonHD display driver
ii fglrx-control 1:15.12-2 amd64 control panel for the non-free ATI/AMD RadeonHD display driver
ii fglrx-driver 1:15.12-2 amd64 non-free ATI/AMD RadeonHD display driver
ii fglrx-modules-dkms 1:15.12-2 amd64 dkms module source for the non-free ATI/AMD RadeonHD display driver
ii fglrx-source 1:15.12-2 amd64 kernel module source for the non-free ATI/AMD RadeonHD display driver
ii glx-alternative-fglrx 0.7.2 amd64 allows the selection of FGLRX as GLX provider
ii libfglrx:amd64 1:15.12-2 amd64 non-free ATI/AMD RadeonHD display driver (runtime libraries)
ii libfglrx:i386 1:15.12-2 i386 non-free ATI/AMD RadeonHD display driver (runtime libraries)
ii libfglrx-amdxvba1:amd64 1:15.12-2 amd64 AMD XvBA (X-Video Bitstream Acceleration) backend for VA API
ii libfglrx-amdxvba1:i386 1:15.12-2 i386 AMD XvBA (X-Video Bitstream Acceleration) backend for VA API
ii libgl1-fglrx-glx:amd64 1:15.12-2 amd64 proprietary libGL for the non-free ATI/AMD RadeonHD display driver
ii libgl1-fglrx-glx:i386 1:15.12-2 i386 proprietary libGL for the non-free ATI/AMD RadeonHD display driver
ii libgl1-fglrx-glx-i386:i386 1:15.12-2 i386 ATI/AMD binary OpenGL 32-bit libraries
VGA-compatible devices on PCI bus:
01:00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. [AMD/ATI] Cape Verde XT [Radeon HD 7770/8760 / R7 250X] [1002:683d] (prog-if 00 [VGA controller])
Subsystem: Micro-Star International Co., Ltd. [MSI] R7770-PMD1GD5 [1462:2710]
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0, Cache Line Size: 32 bytes
Interrupt: pin A routed to IRQ 30
Region 0: Memory at d0000000 (64-bit, prefetchable) [size=256M]
Region 2: Memory at e1000000 (64-bit, non-prefetchable) [size=256K]
Region 4: I/O ports at c000 [size=256]
[virtual] Expansion ROM at 000c0000 [disabled] [size=128K]
Capabilities: <access denied>
Kernel driver in use: fglrx_pci
Kernel modules: radeon, fglrx
DRM and fglrx Informations from dmesg:
[ 0.845349] Linux agpgart interface v0.103
[ 5443.107174] fglrx: module license 'Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY' taints kernel.
[ 5443.148033] <6>[fglrx] Maximum main memory to use for locked dma buffers: 3792 MBytes.
[ 5443.148263] <6>[fglrx] vendor: 1002 device: 683d revision: 0 count: 1
[ 5443.148609] <6>[fglrx] ioport: bar 4, base 0xc000, size: 0x100
[ 5443.148884] <6>[fglrx] Kernel PAT support is enabled
[ 5443.148902] <6>[fglrx] module loaded - fglrx 15.30.3 [Dec 17 2015] with 1 minors
[ 5443.197835] <6>[fglrx] Firegl kernel thread PID: 10371
[ 5443.197916] <6>[fglrx] Firegl kernel thread PID: 10372
[ 5443.198083] <6>[fglrx] IRQ 30 Enabled
[ 5443.207622] <6>[fglrx] Reserved FB block: Shared offset:0, size:1000000
[ 5443.207624] <6>[fglrx] Reserved FB block: Unshared offset:f7e0000, size:4000
[ 5443.207626] <6>[fglrx] Reserved FB block: Unshared offset:f7e4000, size:51c000
[ 5443.207627] <6>[fglrx] Reserved FB block: Unshared offset:3ffed000, size:13000
Xorg X server configuration file status:
-rw-r--r-- 1 root root 684 Jan 5 14:14 /etc/X11/xorg.conf
Contents of /etc/X11/xorg.conf:
Section "ServerLayout"
Identifier "aticonfig Layout"
Screen 0 "aticonfig-Screen[0]-0" 0 0
EndSection
Section "Module"
EndSection
Section "Monitor"
Identifier "aticonfig-Monitor[0]-0"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
EndSection
Section "Device"
Identifier "aticonfig-Device[0]-0"
Driver "fglrx"
BusID "PCI:1:0:0"
EndSection
Section "Screen"
Identifier "aticonfig-Screen[0]-0"
Device "aticonfig-Device[0]-0"
Monitor "aticonfig-Monitor[0]-0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
Xorg X server log files on system:
-rw-r--r-- 1 root root 51435 Jun 26 22:03 /var/log/Xorg.2.log
-rw-r--r-- 1 root root 53565 Jun 26 22:04 /var/log/Xorg.1.log
-rw-r--r-- 1 root root 21639 Jun 26 22:12 /var/log/Xorg.3.log
-rw-r--r-- 1 root root 49312 Jun 30 00:18 /var/log/Xorg.0.log
Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:
[ 5539.599]
X.Org X Server 1.17.3
Release Date: 2015-10-26
[ 5539.599] X Protocol Version 11, Revision 0
[ 5539.599] Build Operating System: Linux 3.16.0-4-amd64 x86_64 Debian
[ 5539.599] Current Operating System: Linux penguin 4.6.0-1-amd64 #1 SMP Debian 4.6.2-2 (2016-06-25) x86_64
[ 5539.599] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.6.0-1-amd64 root=UUID=a1d2fe58-5128-4781-8826-2aa17cc5740f ro quiet
[ 5539.599] Build Date: 27 October 2015 11:41:02PM
[ 5539.599] xorg-server 2:1.17.3-2 (http://www.debian.org/support)
[ 5539.599] Current version of pixman: 0.33.6
[ 5539.599] Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[ 5539.599] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 5539.599] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Jun 30 00:18:09 2016
[ 5539.599] (==) Using config file: "/etc/X11/xorg.conf"
[ 5539.599] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 5539.600] (==) ServerLayout "aticonfig Layout"
[ 5539.600] (**) |-->Screen "aticonfig-Screen[0]-0" (0)
[ 5539.600] (**) | |-->Monitor "aticonfig-Monitor[0]-0"
[ 5539.600] (**) | |-->Device "aticonfig-Device[0]-0"
[ 5539.600] (==) Automatically adding devices
[ 5539.600] (==) Automatically enabling devices
[ 5539.600] (==) Automatically adding GPU devices
[ 5539.600] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[ 5539.600] Entry deleted from font path.
[ 5539.600] (==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
built-ins
[ 5539.600] (==) ModulePath set to "/usr/lib/xorg/modules"
[ 5539.600] (II) The server relies on udev to provide the list of input devices.
If no devices become available, reconfigure udev or disable AutoAddDevices.
[ 5539.600] (II) Loader magic: 0x55f90a009de0
[ 5539.600] (II) Module ABI versions:
[ 5539.600] X.Org ANSI C Emulation: 0.4
[ 5539.600] X.Org Video Driver: 19.0
[ 5539.600] X.Org XInput driver : 21.0
[ 5539.600] X.Org Server Extension : 9.0
[ 5539.601] (EE) systemd-logind: failed to get session: PID 11519 does not belong to any known session
[ 5539.602] (--) PCI:*(0:1:0:0) 1002:683d:1462:2710 rev 0, Mem @ 0xd0000000/268435456, 0xe1000000/262144, I/O @ 0x0000c000/256, BIOS @ 0x????????/131072
[ 5539.602] (II) "glx" will be loaded by default.
[ 5539.602] (II) LoadModule: "glx"
[ 5539.602] (II) Loading /usr/lib/xorg/modules/linux/libglx.so
[ 5539.603] (II) Module glx: vendor="Advanced Micro Devices, Inc."
[ 5539.603] compiled for 6.9.0, module version = 1.0.0
[ 5539.603] (II) LoadModule: "fglrx"
[ 5539.603] (II) Loading /usr/lib/xorg/modules/drivers/fglrx_drv.so
[ 5539.635] (II) Module fglrx: vendor="FireGL - AMD Technologies Inc."
[ 5539.635] compiled for 1.4.99.906, module version = 15.30.3
[ 5539.635] Module class: X.Org Video Driver
[ 5539.636] (II) Loading sub module "fglrxdrm"
[ 5539.636] (II) LoadModule: "fglrxdrm"
[ 5539.636] (II) Loading /usr/lib/xorg/modules/linux/libfglrxdrm.so
[ 5539.636] (II) Module fglrxdrm: vendor="FireGL - AMD Technologies Inc."
[ 5539.636] compiled for 1.4.99.906, module version = 15.30.3
[ 5539.636] (II) AMD Proprietary Linux Driver Version Identifier:15.30.3
[ 5539.636] (II) AMD Proprietary Linux Driver Release Identifier: UNSUPPORTED-15.302
[ 5539.636] (II) AMD Proprietary Linux Driver Build Date: Dec 17 2015 02:43:16
[ 5539.636] (++) using VT number 7
[ 5539.638] (WW) Falling back to old probe method for fglrx
[ 5539.667] (II) Loading PCS database from /etc/ati/amdpcsdb /etc/ati/amdpcsdb.default
[ 5539.669] ukiDynamicMajor: found major device number 248
[ 5539.669] ukiDynamicMajor: found major device number 248
[ 5539.669] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[ 5539.669] ukiOpenDevice: node name is /dev/ati/card0
[ 5539.669] ukiOpenDevice: open result is 10, (OK)
[ 5539.669] ukiOpenByBusid: ukiOpenMinor returns 10
[ 5539.669] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[ 5539.674] (--) Chipset Supported AMD Graphics Processor (0x683D) found
[ 5539.674] (WW) fglrx: No matching Device section for instance (BusID PCI:0 at 1:0:1) found
[ 5539.674] (II) fglrx(0): pEnt->device->identifier=0x55f90af57310
[ 5539.674] (II) fglrx(0): === [xdl_xs117_atiddxPreInit] === begin
[ 5539.674] (II) fglrx(0): FB driver is not enabled
[ 5539.674] (II) Loading sub module "vgahw"
[ 5539.674] (II) LoadModule: "vgahw"
[ 5539.674] (II) Loading /usr/lib/xorg/modules/libvgahw.so
[ 5539.675] (II) Module vgahw: vendor="X.Org Foundation"
[ 5539.675] compiled for 1.17.3, module version = 0.1.0
[ 5539.675] ABI class: X.Org Video Driver, version 19.0
[ 5539.675] (**) fglrx(0): Depth 24, (--) framebuffer bpp 32
[ 5539.675] (II) fglrx(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
[ 5539.675] (==) fglrx(0): Default visual is TrueColor
[ 5539.675] (**) fglrx(0): Option "DPMS" "true"
[ 5539.675] (==) fglrx(0): RGB weight 888
[ 5539.675] (II) fglrx(0): Using 8 bits per RGB
[ 5539.675] (==) fglrx(0): Buffer Tiling is ON
[ 5539.675] (II) Loading sub module "fglrxdrm"
[ 5539.675] (II) LoadModule: "fglrxdrm"
[ 5539.675] (II) Loading /usr/lib/xorg/modules/linux/libfglrxdrm.so
[ 5539.675] (II) Module fglrxdrm: vendor="FireGL - AMD Technologies Inc."
[ 5539.675] compiled for 1.4.99.906, module version = 15.30.3
[ 5539.677] ukiDynamicMajor: found major device number 248
[ 5539.677] ukiDynamicMajor: found major device number 248
[ 5539.677] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[ 5539.677] ukiOpenDevice: node name is /dev/ati/card0
[ 5539.677] ukiOpenDevice: open result is 12, (OK)
[ 5539.677] ukiOpenByBusid: ukiOpenMinor returns 12
[ 5539.677] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[ 5539.677] (**) fglrx(0): NoAccel = NO
[ 5539.678] (**) fglrx(0): AMD 2D Acceleration Architecture enabled
[ 5539.678] (--) fglrx(0): Chipset: "AMD Radeon HD 7700 Series " (Chipset = 0x683d)
[ 5539.678] (--) fglrx(0): (PciSubVendor = 0x1462, PciSubDevice = 0x2710)
[ 5539.678] (==) fglrx(0): board vendor info: third party graphics adapter - NOT original AMD
[ 5539.678] (--) fglrx(0): Linear framebuffer (phys) at 0xd0000000
[ 5539.678] (--) fglrx(0): MMIO registers at 0xe1000000
[ 5539.678] (--) fglrx(0): I/O port at 0x0000c000
[ 5539.678] (==) fglrx(0): ROM-BIOS at 0x000c0000
[ 5539.678] (II) fglrx(0): AC Adapter is used
[ 5539.678] (II) fglrx(0): Primary V_BIOS segment is: 0xc000
[ 5539.801] (II) Loading sub module "vbe"
[ 5539.801] (II) LoadModule: "vbe"
[ 5539.801] (II) Loading /usr/lib/xorg/modules/libvbe.so
[ 5539.801] (II) Module vbe: vendor="X.Org Foundation"
[ 5539.801] compiled for 1.17.3, module version = 1.1.0
[ 5539.801] ABI class: X.Org Video Driver, version 19.0
[ 5539.801] (II) fglrx(0): VESA BIOS detected
[ 5539.801] (II) fglrx(0): VESA VBE Version 3.0
[ 5539.801] (II) fglrx(0): VESA VBE Total Mem: 16384 kB
[ 5539.801] (II) fglrx(0): VESA VBE OEM: AMD ATOMBIOS
[ 5539.801] (II) fglrx(0): VESA VBE OEM Software Rev: 15.21
[ 5539.801] (II) fglrx(0): VESA VBE OEM Vendor: (C) 1988-2010, Advanced Micro Devices, Inc.
[ 5539.801] (II) fglrx(0): VESA VBE OEM Product: VERDE
[ 5539.801] (II) fglrx(0): VESA VBE OEM Product Rev: 01.00
[ 5539.801] (II) fglrx(0): AMD Video BIOS revision 9 or later detected
[ 5539.801] (--) fglrx(0): Video RAM: 1048576 kByte, Type: GDDR5
[ 5539.801] (II) fglrx(0): PCIE card detected
[ 5539.801] (--) fglrx(0): Using per-process page tables (PPPT) as GART.
[ 5539.801] (WW) fglrx(0): board is an unknown third party board, chipset is supported
[ 5539.801] (II) fglrx(0): [FB] MC range(MCFBBase = 0xf400000000, MCFBSize = 0x40000000)
[ 5539.801] (II) fglrx(0): RandR 1.2 support is enabled!
[ 5539.801] (II) fglrx(0): RandR 1.2 rotation support is enabled!
[ 5539.802] (II) Loading sub module "fb"
[ 5539.802] (II) LoadModule: "fb"
[ 5539.802] (II) Loading /usr/lib/xorg/modules/libfb.so
[ 5539.802] (II) Module fb: vendor="X.Org Foundation"
[ 5539.802] compiled for 1.17.3, module version = 1.0.0
[ 5539.802] ABI class: X.Org ANSI C Emulation, version 0.4
[ 5539.802] (II) fglrx(0): EDID Management option: EDID Management is enabled
[ 5539.802] (II) Loading sub module "ddc"
[ 5539.802] (II) LoadModule: "ddc"
[ 5539.802] (II) Module "ddc" already built-in
[ 5540.141] (II) fglrx(0): Output DFP1 using monitor section aticonfig-Monitor[0]-0
[ 5540.141] (II) fglrx(0): Output DFP2 has no monitor section
[ 5540.141] (II) fglrx(0): Output DFP3 has no monitor section
[ 5540.141] (II) fglrx(0): Output DFP4 has no monitor section
[ 5540.141] (II) fglrx(0): Output DFP5 has no monitor section
[ 5540.141] (II) fglrx(0): Output DFP6 has no monitor section
[ 5540.141] (II) fglrx(0): Output CRT1 has no monitor section
[ 5540.141] (II) Loading sub module "ddc"
[ 5540.141] (II) LoadModule: "ddc"
[ 5540.141] (II) Module "ddc" already built-in
[ 5540.141] (II) fglrx(0): Connected Display0: DFP6
[ 5540.141] (II) fglrx(0): Display0 EDID data ---------------------------
[ 5540.141] (II) fglrx(0): Manufacturer: GSM Model: 4ea0 Serial#: 176832
[ 5540.141] (II) fglrx(0): Year: 2009 Week: 9
[ 5540.141] (II) fglrx(0): EDID Version: 1.3
[ 5540.141] (II) fglrx(0): Digital Display Input
[ 5540.141] (II) fglrx(0): Max Image Size [cm]: horiz.: 45 vert.: 25
[ 5540.141] (II) fglrx(0): Gamma: 2.20
[ 5540.141] (II) fglrx(0): DPMS capabilities: StandBy Suspend Off
[ 5540.141] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
[ 5540.141] (II) fglrx(0): First detailed timing is preferred mode
[ 5540.141] (II) fglrx(0): redX: 0.646 redY: 0.334 greenX: 0.302 greenY: 0.615
[ 5540.141] (II) fglrx(0): blueX: 0.146 blueY: 0.066 whiteX: 0.312 whiteY: 0.328
[ 5540.141] (II) fglrx(0): Supported established timings:
[ 5540.141] (II) fglrx(0): 720x400 at 70Hz
[ 5540.141] (II) fglrx(0): 640x480 at 60Hz
[ 5540.141] (II) fglrx(0): 640x480 at 75Hz
[ 5540.141] (II) fglrx(0): 800x600 at 56Hz
[ 5540.141] (II) fglrx(0): 800x600 at 60Hz
[ 5540.141] (II) fglrx(0): 800x600 at 75Hz
[ 5540.141] (II) fglrx(0): 832x624 at 75Hz
[ 5540.141] (II) fglrx(0): 1024x768 at 60Hz
[ 5540.141] (II) fglrx(0): 1024x768 at 75Hz
[ 5540.141] (II) fglrx(0): 1152x864 at 75Hz
[ 5540.141] (II) fglrx(0): Manufacturer's mask: 0
[ 5540.141] (II) fglrx(0): Supported standard timings:
[ 5540.141] (II) fglrx(0): #0: hsize: 1600 vsize 900 refresh: 60 vid: 49321
[ 5540.141] (II) fglrx(0): #1: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
[ 5540.141] (II) fglrx(0): #2: hsize: 1152 vsize 864 refresh: 75 vid: 20337
[ 5540.141] (II) fglrx(0): Supported detailed timing:
[ 5540.141] (II) fglrx(0): clock: 108.0 MHz Image Size: 443 x 249 mm
[ 5540.141] (II) fglrx(0): h_active: 1600 h_sync: 1624 h_sync_end 1704 h_blank_end 1800 h_border: 0
[ 5540.141] (II) fglrx(0): v_active: 900 v_sync: 901 v_sync_end 904 v_blanking: 1000 v_border: 0
[ 5540.141] (II) fglrx(0): Supported detailed timing:
[ 5540.141] (II) fglrx(0): clock: 108.0 MHz Image Size: 443 x 249 mm
[ 5540.141] (II) fglrx(0): h_active: 1600 h_sync: 1624 h_sync_end 1704 h_blank_end 1800 h_border: 0
[ 5540.141] (II) fglrx(0): v_active: 900 v_sync: 901 v_sync_end 904 v_blanking: 1000 v_border: 0
[ 5540.141] (II) fglrx(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 83 kHz, PixClock max 135 MHz
[ 5540.141] (II) fglrx(0): Monitor name: W2053
[ 5540.142] (II) fglrx(0): EDID (in hex):
[ 5540.142] (II) fglrx(0): 00ffffffffffff001e6da04ec0b20200
[ 5540.142] (II) fglrx(0): 09130103ea2d1978eaa680a5554d9d25
[ 5540.142] (II) fglrx(0): 115054a76a80a9c08180714f01010101
[ 5540.142] (II) fglrx(0): 010101010101302a40c8608464301850
[ 5540.142] (II) fglrx(0): 1300bbf91000001e302a40c860846430
[ 5540.142] (II) fglrx(0): 18501300bbf91000001e000000fd0038
[ 5540.142] (II) fglrx(0): 4b1e530d000a202020202020000000fc
[ 5540.142] (II) fglrx(0): 0057323035330a202020202020200081
[ 5540.142] (II) fglrx(0): End of Display0 EDID data --------------------
[ 5540.142] (II) fglrx(0): Dynamic Surface Resizing Enabled
[ 5540.142] (II) fglrx(0): EDID for output DFP1
[ 5540.142] (II) fglrx(0): EDID for output DFP2
[ 5540.142] (II) fglrx(0): EDID for output DFP3
[ 5540.142] (II) fglrx(0): EDID for output DFP4
[ 5540.142] (II) fglrx(0): EDID for output DFP5
[ 5540.142] (II) fglrx(0): EDID for output DFP6
[ 5540.142] (II) fglrx(0): Manufacturer: GSM Model: 4ea0 Serial#: 176832
[ 5540.142] (II) fglrx(0): Year: 2009 Week: 9
[ 5540.142] (II) fglrx(0): EDID Version: 1.3
[ 5540.142] (II) fglrx(0): Digital Display Input
[ 5540.142] (II) fglrx(0): Max Image Size [cm]: horiz.: 45 vert.: 25
[ 5540.142] (II) fglrx(0): Gamma: 2.20
[ 5540.142] (II) fglrx(0): DPMS capabilities: StandBy Suspend Off
[ 5540.142] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
[ 5540.142] (II) fglrx(0): First detailed timing is preferred mode
[ 5540.142] (II) fglrx(0): redX: 0.646 redY: 0.334 greenX: 0.302 greenY: 0.615
[ 5540.142] (II) fglrx(0): blueX: 0.146 blueY: 0.066 whiteX: 0.312 whiteY: 0.328
[ 5540.142] (II) fglrx(0): Supported established timings:
[ 5540.142] (II) fglrx(0): 720x400 at 70Hz
[ 5540.143] (II) fglrx(0): 640x480 at 60Hz
[ 5540.143] (II) fglrx(0): 640x480 at 75Hz
[ 5540.143] (II) fglrx(0): 800x600 at 56Hz
[ 5540.143] (II) fglrx(0): 800x600 at 60Hz
[ 5540.143] (II) fglrx(0): 800x600 at 75Hz
[ 5540.143] (II) fglrx(0): 832x624 at 75Hz
[ 5540.143] (II) fglrx(0): 1024x768 at 60Hz
[ 5540.143] (II) fglrx(0): 1024x768 at 75Hz
[ 5540.143] (II) fglrx(0): 1152x864 at 75Hz
[ 5540.143] (II) fglrx(0): Manufacturer's mask: 0
[ 5540.143] (II) fglrx(0): Supported standard timings:
[ 5540.143] (II) fglrx(0): #0: hsize: 1600 vsize 900 refresh: 60 vid: 49321
[ 5540.143] (II) fglrx(0): #1: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
[ 5540.143] (II) fglrx(0): #2: hsize: 1152 vsize 864 refresh: 75 vid: 20337
[ 5540.143] (II) fglrx(0): Supported detailed timing:
[ 5540.143] (II) fglrx(0): clock: 108.0 MHz Image Size: 443 x 249 mm
[ 5540.143] (II) fglrx(0): h_active: 1600 h_sync: 1624 h_sync_end 1704 h_blank_end 1800 h_border: 0
[ 5540.143] (II) fglrx(0): v_active: 900 v_sync: 901 v_sync_end 904 v_blanking: 1000 v_border: 0
[ 5540.143] (II) fglrx(0): Supported detailed timing:
[ 5540.143] (II) fglrx(0): clock: 108.0 MHz Image Size: 443 x 249 mm
[ 5540.143] (II) fglrx(0): h_active: 1600 h_sync: 1624 h_sync_end 1704 h_blank_end 1800 h_border: 0
[ 5540.143] (II) fglrx(0): v_active: 900 v_sync: 901 v_sync_end 904 v_blanking: 1000 v_border: 0
[ 5540.143] (II) fglrx(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 83 kHz, PixClock max 135 MHz
[ 5540.143] (II) fglrx(0): Monitor name: W2053
[ 5540.143] (II) fglrx(0): EDID (in hex):
[ 5540.143] (II) fglrx(0): 00ffffffffffff001e6da04ec0b20200
[ 5540.143] (II) fglrx(0): 09130103ea2d1978eaa680a5554d9d25
[ 5540.143] (II) fglrx(0): 115054a76a80a9c08180714f01010101
[ 5540.143] (II) fglrx(0): 010101010101302a40c8608464301850
[ 5540.143] (II) fglrx(0): 1300bbf91000001e302a40c860846430
[ 5540.143] (II) fglrx(0): 18501300bbf91000001e000000fd0038
[ 5540.143] (II) fglrx(0): 4b1e530d000a202020202020000000fc
[ 5540.143] (II) fglrx(0): 0057323035330a202020202020200081
[ 5540.143] (II) fglrx(0): Printing probed modes for output DFP6
[ 5540.143] (II) fglrx(0): Modeline "1600x900"x60.0 108.00 1600 1624 1704 1800 900 901 904 1000 +hsync +vsync (60.0 kHz eP)
[ 5540.143] (II) fglrx(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[ 5540.143] (II) fglrx(0): Modeline "1440x900"x60.0 108.00 1440 1624 1704 1800 900 901 904 1000 +hsync +vsync (60.0 kHz e)
[ 5540.143] (II) fglrx(0): Modeline "1280x960"x60.0 108.00 1280 1328 1440 1688 960 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[ 5540.143] (II) fglrx(0): Modeline "1366x768"x60.0 108.00 1366 1624 1704 1800 768 901 904 1000 +hsync +vsync (60.0 kHz e)
[ 5540.143] (II) fglrx(0): Modeline "1360x768"x60.0 108.00 1360 1624 1704 1800 768 901 904 1000 +hsync +vsync (60.0 kHz e)
[ 5540.143] (II) fglrx(0): Modeline "1280x800"x60.0 108.00 1280 1328 1440 1688 800 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[ 5540.143] (II) fglrx(0): Modeline "1152x864"x60.0 108.00 1152 1624 1704 1800 864 901 904 1000 +hsync +vsync (60.0 kHz e)
[ 5540.143] (II) fglrx(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
[ 5540.143] (II) fglrx(0): Modeline "1280x768"x60.0 108.00 1280 1328 1440 1688 768 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[ 5540.143] (II) fglrx(0): Modeline "1280x720"x60.0 108.00 1280 1328 1440 1688 720 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[ 5540.143] (II) fglrx(0): Modeline "1024x768"x75.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
[ 5540.143] (II) fglrx(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
[ 5540.143] (II) fglrx(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
[ 5540.143] (II) fglrx(0): Modeline "800x600"x60.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
[ 5540.143] (II) fglrx(0): Modeline "800x600"x56.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
[ 5540.143] (II) fglrx(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
[ 5540.143] (II) fglrx(0): Modeline "640x480"x60.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
[ 5540.143] (II) fglrx(0): EDID for output CRT1
[ 5540.143] (II) fglrx(0): Output DFP1 disconnected
[ 5540.143] (II) fglrx(0): Output DFP2 disconnected
[ 5540.143] (II) fglrx(0): Output DFP3 disconnected
[ 5540.143] (II) fglrx(0): Output DFP4 disconnected
[ 5540.143] (II) fglrx(0): Output DFP5 disconnected
[ 5540.143] (II) fglrx(0): Output DFP6 connected
[ 5540.143] (II) fglrx(0): Output CRT1 disconnected
[ 5540.143] (II) fglrx(0): Using exact sizes for initial modes
[ 5540.143] (II) fglrx(0): Output DFP6 using initial mode 1600x900
[ 5540.143] (II) fglrx(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[ 5540.143] (II) fglrx(0): DPI set to (96, 96)
[ 5540.143] (II) fglrx(0): Eyefinity capable adapter detected.
[ 5540.143] (II) fglrx(0): Adapter AMD Radeon HD 7700 Series has 6 configurable heads and 1 displays connected.
[ 5540.143] (==) fglrx(0): PseudoColor visuals disabled
[ 5540.143] (II) Loading sub module "ramdac"
[ 5540.143] (II) LoadModule: "ramdac"
[ 5540.143] (II) Module "ramdac" already built-in
[ 5540.143] (==) fglrx(0): NoDRI = NO
[ 5540.143] (==) fglrx(0): Capabilities: 0x00000000
[ 5540.143] (==) fglrx(0): CapabilitiesEx: 0x00000000
[ 5540.143] (==) fglrx(0): OpenGL ClientDriverName: "fglrx_dri.so"
[ 5540.143] (==) fglrx(0): UseFastTLS=0
[ 5540.143] (II) fglrx(0): Shadow Primary option: ShadowPrimary is enabled
[ 5540.143] (--) Depth 24 pixmap format is 32 bpp
[ 5540.144] (II) fglrx(0): doing swlDriScreenInit
[ 5540.144] (II) fglrx(0): swlDriScreenInit for fglrx driver
[ 5540.144] ukiDynamicMajor: found major device number 248
[ 5540.144] ukiDynamicMajor: found major device number 248
[ 5540.144] ukiDynamicMajor: found major device number 248
[ 5540.144] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[ 5540.144] ukiOpenDevice: node name is /dev/ati/card0
[ 5540.144] ukiOpenDevice: open result is 13, (OK)
[ 5540.144] ukiOpenByBusid: ukiOpenMinor returns 13
[ 5540.144] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[ 5540.144] (II) fglrx(0): [uki] DRM interface version 1.0
[ 5540.144] (II) fglrx(0): [uki] created "fglrx" driver at busid "PCI:1:0:0"
[ 5540.144] (II) fglrx(0): [uki] added 8192 byte SAREA at 0x8f000
[ 5540.144] (II) fglrx(0): [uki] mapped SAREA 0x8f000 to 0x7fc61db06000
[ 5540.144] (II) fglrx(0): [uki] framebuffer handle = 0x90000
[ 5540.144] (II) fglrx(0): [uki] added 1 reserved context for kernel
[ 5540.144] (II) fglrx(0): swlDriScreenInit done
[ 5540.144] (II) fglrx(0): Kernel Module Version Information:
[ 5540.144] (II) fglrx(0): Name: fglrx
[ 5540.144] (II) fglrx(0): Version: 15.30.3
[ 5540.144] (II) fglrx(0): Date: Dec 17 2015
[ 5540.144] (II) fglrx(0): Desc: AMD FireGL DRM kernel module
[ 5540.144] (II) fglrx(0): Kernel Module version matches driver.
[ 5540.144] (II) fglrx(0): Kernel Module Build Time Information:
[ 5540.144] (II) fglrx(0): Build-Kernel UTS_RELEASE: 4.6.0-1-amd64
[ 5540.144] (II) fglrx(0): Build-Kernel MODVERSIONS: no
[ 5540.144] (II) fglrx(0): Build-Kernel __SMP__: no
[ 5540.144] (II) fglrx(0): Build-Kernel PAGE_SIZE: 0x1000
[ 5540.144] (II) fglrx(0): [uki] register handle = 0x00091000
[ 5540.145] (II) fglrx(0): Display width adjusted to to 1664 due to alignment constraints
[ 5540.145] (II) fglrx(0): DRI initialization successfull
[ 5540.145] (II) fglrx(0): FBADPhys: 0xf400000000 FBMappedSize: 0x01110000
[ 5540.145] (==) fglrx(0): Backing store enabled
[ 5540.145] (**) fglrx(0): DPMS enabled
[ 5540.145] (II) fglrx(0): Initialized in-driver Xinerama extension
[ 5540.145] (**) fglrx(0): Textured Video is enabled.
[ 5540.145] (II) LoadModule: "glesx"
[ 5540.145] (II) Loading /usr/lib/xorg/modules/glesx.so
[ 5540.149] (II) Module glesx: vendor="X.Org Foundation"
[ 5540.149] compiled for 1.4.99.906, module version = 1.0.0
[ 5540.149] (II) fglrx(0): GLESX enableFlags = 8784
[ 5540.149] (II) fglrx(0): GLESX is enabled
[ 5540.149] (II) LoadModule: "amdxmm"
[ 5540.149] (II) Loading /usr/lib/xorg/modules/amdxmm.so
[ 5540.149] (II) Module amdxmm: vendor="X.Org Foundation"
[ 5540.149] compiled for 1.4.99.906, module version = 2.0.0
[ 5540.329] (II) fglrx(0): UVD feature is enabled(II) fglrx(0):
[ 5540.332] (II) fglrx(0): Enable composite support successfully
[ 5540.332] (WW) fglrx(0): Option "VendorName" is not used
[ 5540.332] (WW) fglrx(0): Option "ModelName" is not used
[ 5540.332] (II) fglrx(0): X context handle = 0x3
[ 5540.332] (II) fglrx(0): [DRI] installation complete
[ 5540.333] (==) fglrx(0): Silken mouse enabled
[ 5540.333] (==) fglrx(0): Using HW cursor of display infrastructure!
[ 5540.333] (II) fglrx(0): LPT is disabled by configure option
[ 5540.333] (II) fglrx(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[ 5540.481] (--) RandR disabled
[ 5540.485] (II) SELinux: Disabled on system
[ 5540.485] ukiDynamicMajor: found major device number 248
[ 5540.485] ukiDynamicMajor: found major device number 248
[ 5540.485] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[ 5540.485] ukiOpenDevice: node name is /dev/ati/card0
[ 5540.486] ukiOpenDevice: open result is 14, (OK)
[ 5540.486] ukiOpenByBusid: ukiOpenMinor returns 14
[ 5540.486] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[ 5540.486] (EE) AIGLX error: failed to open /usr/X11R6/lib64/modules/dri/fglrx_dri.so, error[/usr/X11R6/lib64/modules/dri/fglrx_dri.so: cannot open shared object file: No such file or directory]
[ 5540.486] (EE) AIGLX error: failed to open /usr/lib64/dri/fglrx_dri.so, error[/usr/lib64/dri/fglrx_dri.so: cannot open shared object file: No such file or directory]
[ 5540.486] (EE) AIGLX error: failed to open /usr/X11R6/lib/modules/dri/fglrx_dri.so, error[/usr/X11R6/lib/modules/dri/fglrx_dri.so: cannot open shared object file: No such file or directory]
[ 5540.489] ukiDynamicMajor: found major device number 248
[ 5540.489] ukiDynamicMajor: found major device number 248
[ 5540.489] ukiDynamicMajor: found major device number 248
[ 5540.489] ukiOpenDevice: node name is /dev/ati/card0
[ 5540.489] ukiOpenDevice: open result is 15, (OK)
[ 5540.489] ukiGetBusid returned 'PCI:1:0:0'
[ 5540.489] ukiOpenDevice: node name is /dev/ati/card1
[ 5540.489] ukiOpenDevice: open result is -1, (No such device)
[ 5540.489] ukiOpenDevice: open result is -1, (No such device)
[ 5540.489] ukiOpenDevice: Open failed
[ 5540.489] ukiOpenDevice: node name is /dev/ati/card2
[ 5540.489] ukiOpenDevice: open result is -1, (No such device)
[ 5540.489] ukiOpenDevice: open result is -1, (No such device)
[ 5540.489] ukiOpenDevice: Open failed
[ 5540.489] ukiOpenDevice: node name is /dev/ati/card3
[ 5540.489] ukiOpenDevice: open result is -1, (No such device)
[ 5540.489] ukiOpenDevice: open result is -1, (No such device)
[ 5540.489] ukiOpenDevice: Open failed
[ 5540.489] ukiOpenDevice: node name is /dev/ati/card4
[ 5540.489] ukiOpenDevice: open result is -1, (No such device)
[ 5540.489] ukiOpenDevice: open result is -1, (No such device)
[ 5540.489] ukiOpenDevice: Open failed
[ 5540.489] ukiOpenDevice: node name is /dev/ati/card5
[ 5540.489] ukiOpenDevice: open result is -1, (No such device)
[ 5540.489] ukiOpenDevice: open result is -1, (No such device)
[ 5540.489] ukiOpenDevice: Open failed
[ 5540.489] ukiOpenDevice: node name is /dev/ati/card6
[ 5540.489] ukiOpenDevice: open result is -1, (No such device)
[ 5540.489] ukiOpenDevice: open result is -1, (No such device)
[ 5540.489] ukiOpenDevice: Open failed
[ 5540.489] ukiOpenDevice: node name is /dev/ati/card7
[ 5540.489] ukiOpenDevice: open result is -1, (No such device)
[ 5540.489] ukiOpenDevice: open result is -1, (No such device)
[ 5540.489] ukiOpenDevice: Open failed
[ 5540.489] ukiOpenDevice: node name is /dev/ati/card8
[ 5540.489] ukiOpenDevice: open result is -1, (No such device)
[ 5540.489] ukiOpenDevice: open result is -1, (No such device)
[ 5540.489] ukiOpenDevice: Open failed
[ 5540.489] ukiOpenDevice: node name is /dev/ati/card9
[ 5540.489] ukiOpenDevice: open result is -1, (No such device)
[ 5540.489] ukiOpenDevice: open result is -1, (No such device)
[ 5540.489] ukiOpenDevice: Open failed
[ 5540.489] ukiOpenDevice: node name is /dev/ati/card10
[ 5540.489] ukiOpenDevice: open result is -1, (No such device)
[ 5540.489] ukiOpenDevice: open result is -1, (No such device)
[ 5540.489] ukiOpenDevice: Open failed
[ 5540.489] ukiOpenDevice: node name is /dev/ati/card11
[ 5540.489] ukiOpenDevice: open result is -1, (No such device)
[ 5540.489] ukiOpenDevice: open result is -1, (No such device)
[ 5540.489] ukiOpenDevice: Open failed
[ 5540.489] ukiOpenDevice: node name is /dev/ati/card12
[ 5540.489] ukiOpenDevice: open result is -1, (No such device)
[ 5540.489] ukiOpenDevice: open result is -1, (No such device)
[ 5540.489] ukiOpenDevice: Open failed
[ 5540.489] ukiOpenDevice: node name is /dev/ati/card13
[ 5540.489] ukiOpenDevice: open result is -1, (No such device)
[ 5540.489] ukiOpenDevice: open result is -1, (No such device)
[ 5540.489] ukiOpenDevice: Open failed
[ 5540.489] ukiOpenDevice: node name is /dev/ati/card14
[ 5540.489] ukiOpenDevice: open result is -1, (No such device)
[ 5540.489] ukiOpenDevice: open result is -1, (No such device)
[ 5540.489] ukiOpenDevice: Open failed
[ 5540.489] ukiOpenDevice: node name is /dev/ati/card15
[ 5540.489] ukiOpenDevice: open result is -1, (No such device)
[ 5540.489] ukiOpenDevice: open result is -1, (No such device)
[ 5540.489] ukiOpenDevice: Open failed
[ 5540.490] ukiDynamicMajor: found major device number 248
[ 5540.490] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[ 5540.490] ukiOpenDevice: node name is /dev/ati/card0
[ 5540.490] ukiOpenDevice: open result is 15, (OK)
[ 5540.490] ukiOpenByBusid: ukiOpenMinor returns 15
[ 5540.490] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[ 5540.529] (II) AIGLX: Loaded and initialized OpenGL driver(II) GLX: Initialized DRI GL provider for screen 0
[ 5540.530] ukiDynamicMajor: found major device number 248
[ 5540.530] ukiDynamicMajor: found major device number 248
[ 5540.530] ukiDynamicMajor: found major device number 248
[ 5540.530] ukiOpenDevice: node name is /dev/ati/card0
[ 5540.530] ukiOpenDevice: open result is 16, (OK)
[ 5540.530] ukiGetBusid returned 'PCI:1:0:0'
[ 5540.530] ukiOpenDevice: node name is /dev/ati/card1
[ 5540.530] ukiOpenDevice: open result is -1, (No such device)
[ 5540.530] ukiOpenDevice: open result is -1, (No such device)
[ 5540.530] ukiOpenDevice: Open failed
[ 5540.530] ukiOpenDevice: node name is /dev/ati/card2
[ 5540.530] ukiOpenDevice: open result is -1, (No such device)
[ 5540.530] ukiOpenDevice: open result is -1, (No such device)
[ 5540.530] ukiOpenDevice: Open failed
[ 5540.530] ukiOpenDevice: node name is /dev/ati/card3
[ 5540.530] ukiOpenDevice: open result is -1, (No such device)
[ 5540.530] ukiOpenDevice: open result is -1, (No such device)
[ 5540.530] ukiOpenDevice: Open failed
[ 5540.530] ukiOpenDevice: node name is /dev/ati/card4
[ 5540.530] ukiOpenDevice: open result is -1, (No such device)
[ 5540.530] ukiOpenDevice: open result is -1, (No such device)
[ 5540.530] ukiOpenDevice: Open failed
[ 5540.530] ukiOpenDevice: node name is /dev/ati/card5
[ 5540.530] ukiOpenDevice: open result is -1, (No such device)
[ 5540.530] ukiOpenDevice: open result is -1, (No such device)
[ 5540.530] ukiOpenDevice: Open failed
[ 5540.530] ukiOpenDevice: node name is /dev/ati/card6
[ 5540.530] ukiOpenDevice: open result is -1, (No such device)
[ 5540.530] ukiOpenDevice: open result is -1, (No such device)
[ 5540.530] ukiOpenDevice: Open failed
[ 5540.530] ukiOpenDevice: node name is /dev/ati/card7
[ 5540.530] ukiOpenDevice: open result is -1, (No such device)
[ 5540.530] ukiOpenDevice: open result is -1, (No such device)
[ 5540.530] ukiOpenDevice: Open failed
[ 5540.530] ukiOpenDevice: node name is /dev/ati/card8
[ 5540.530] ukiOpenDevice: open result is -1, (No such device)
[ 5540.530] ukiOpenDevice: open result is -1, (No such device)
[ 5540.530] ukiOpenDevice: Open failed
[ 5540.530] ukiOpenDevice: node name is /dev/ati/card9
[ 5540.530] ukiOpenDevice: open result is -1, (No such device)
[ 5540.530] ukiOpenDevice: open result is -1, (No such device)
[ 5540.530] ukiOpenDevice: Open failed
[ 5540.530] ukiOpenDevice: node name is /dev/ati/card10
[ 5540.530] ukiOpenDevice: open result is -1, (No such device)
[ 5540.530] ukiOpenDevice: open result is -1, (No such device)
[ 5540.530] ukiOpenDevice: Open failed
[ 5540.530] ukiOpenDevice: node name is /dev/ati/card11
[ 5540.530] ukiOpenDevice: open result is -1, (No such device)
[ 5540.530] ukiOpenDevice: open result is -1, (No such device)
[ 5540.530] ukiOpenDevice: Open failed
[ 5540.530] ukiOpenDevice: node name is /dev/ati/card12
[ 5540.530] ukiOpenDevice: open result is -1, (No such device)
[ 5540.530] ukiOpenDevice: open result is -1, (No such device)
[ 5540.530] ukiOpenDevice: Open failed
[ 5540.530] ukiOpenDevice: node name is /dev/ati/card13
[ 5540.530] ukiOpenDevice: open result is -1, (No such device)
[ 5540.530] ukiOpenDevice: open result is -1, (No such device)
[ 5540.530] ukiOpenDevice: Open failed
[ 5540.530] ukiOpenDevice: node name is /dev/ati/card14
[ 5540.530] ukiOpenDevice: open result is -1, (No such device)
[ 5540.530] ukiOpenDevice: open result is -1, (No such device)
[ 5540.531] ukiOpenDevice: Open failed
[ 5540.531] ukiOpenDevice: node name is /dev/ati/card15
[ 5540.531] ukiOpenDevice: open result is -1, (No such device)
[ 5540.531] ukiOpenDevice: open result is -1, (No such device)
[ 5540.531] ukiOpenDevice: Open failed
[ 5540.531] ukiDynamicMajor: found major device number 248
[ 5540.531] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[ 5540.531] ukiOpenDevice: node name is /dev/ati/card0
[ 5540.531] ukiOpenDevice: open result is 16, (OK)
[ 5540.531] ukiOpenByBusid: ukiOpenMinor returns 16
[ 5540.531] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[ 5540.540] (II) fglrx(0): OverDrive5 Detected!
[ 5540.544] (II) fglrx(0): Setting screen physical size to 423 x 238
[ 5540.595] (II) config/udev: Adding input device Power Button (/dev/input/event4)
[ 5540.595] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[ 5540.595] (II) LoadModule: "evdev"
[ 5540.595] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 5540.596] (II) Module evdev: vendor="X.Org Foundation"
[ 5540.596] compiled for 1.16.4, module version = 2.9.2
[ 5540.596] Module class: X.Org XInput Driver
[ 5540.596] ABI class: X.Org XInput driver, version 21.0
[ 5540.596] (II) Using input driver 'evdev' for 'Power Button'
[ 5540.596] (**) Power Button: always reports core events
[ 5540.596] (**) evdev: Power Button: Device: "/dev/input/event4"
[ 5540.596] (--) evdev: Power Button: Vendor 0 Product 0x1
[ 5540.596] (--) evdev: Power Button: Found keys
[ 5540.596] (II) evdev: Power Button: Configuring as keyboard
[ 5540.596] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input5/event4"
[ 5540.596] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[ 5540.596] (**) Option "xkb_rules" "evdev"
[ 5540.596] (**) Option "xkb_model" "pc104"
[ 5540.596] (**) Option "xkb_layout" "us,il"
[ 5540.596] (**) Option "xkb_variant" ","
[ 5540.596] (**) Option "xkb_options" "grp:alt_shift_toggle,grp_led:scroll"
[ 5540.620] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[ 5540.620] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[ 5540.620] (II) Using input driver 'evdev' for 'Power Button'
[ 5540.620] (**) Power Button: always reports core events
[ 5540.620] (**) evdev: Power Button: Device: "/dev/input/event3"
[ 5540.621] (--) evdev: Power Button: Vendor 0 Product 0x1
[ 5540.621] (--) evdev: Power Button: Found keys
[ 5540.621] (II) evdev: Power Button: Configuring as keyboard
[ 5540.621] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input4/event3"
[ 5540.621] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[ 5540.621] (**) Option "xkb_rules" "evdev"
[ 5540.621] (**) Option "xkb_model" "pc104"
[ 5540.621] (**) Option "xkb_layout" "us,il"
[ 5540.621] (**) Option "xkb_variant" ","
[ 5540.621] (**) Option "xkb_options" "grp:alt_shift_toggle,grp_led:scroll"
[ 5540.621] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=9 (/dev/input/event9)
[ 5540.621] (II) No input driver specified, ignoring this device.
[ 5540.621] (II) This device may have been added with another device file.
[ 5540.622] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=10 (/dev/input/event10)
[ 5540.622] (II) No input driver specified, ignoring this device.
[ 5540.622] (II) This device may have been added with another device file.
[ 5540.622] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=11 (/dev/input/event11)
[ 5540.622] (II) No input driver specified, ignoring this device.
[ 5540.622] (II) This device may have been added with another device file.
[ 5540.623] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=3 (/dev/input/event6)
[ 5540.623] (II) No input driver specified, ignoring this device.
[ 5540.623] (II) This device may have been added with another device file.
[ 5540.623] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=7 (/dev/input/event7)
[ 5540.623] (II) No input driver specified, ignoring this device.
[ 5540.623] (II) This device may have been added with another device file.
[ 5540.623] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=8 (/dev/input/event8)
[ 5540.624] (II) No input driver specified, ignoring this device.
[ 5540.624] (II) This device may have been added with another device file.
[ 5540.624] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event12)
[ 5540.624] (II) No input driver specified, ignoring this device.
[ 5540.624] (II) This device may have been added with another device file.
[ 5540.624] (II) config/udev: Adding input device HDA Intel Rear Mic (/dev/input/event13)
[ 5540.624] (II) No input driver specified, ignoring this device.
[ 5540.624] (II) This device may have been added with another device file.
[ 5540.625] (II) config/udev: Adding input device HDA Intel Front Mic (/dev/input/event14)
[ 5540.625] (II) No input driver specified, ignoring this device.
[ 5540.625] (II) This device may have been added with another device file.
[ 5540.625] (II) config/udev: Adding input device HDA Intel Line (/dev/input/event15)
[ 5540.625] (II) No input driver specified, ignoring this device.
[ 5540.625] (II) This device may have been added with another device file.
[ 5540.626] (II) config/udev: Adding input device HDA Intel Line Out (/dev/input/event16)
[ 5540.626] (II) No input driver specified, ignoring this device.
[ 5540.626] (II) This device may have been added with another device file.
[ 5540.626] (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
[ 5540.626] (II) No input driver specified, ignoring this device.
[ 5540.626] (II) This device may have been added with another device file.
[ 5540.632] (II) fglrx(0): Restoring Recent Mode via PCS is not supported in RANDR 1.2 capable environments
[ 5557.492] (II) config/udev: Adding input device Lite-On Technology Corp. Wireless Device (/dev/input/mouse0)
[ 5557.492] (II) No input driver specified, ignoring this device.
[ 5557.492] (II) This device may have been added with another device file.
[ 5557.527] (II) config/udev: Adding input device Lite-On Technology Corp. Wireless Device (/dev/input/event1)
[ 5557.527] (**) Lite-On Technology Corp. Wireless Device: Applying InputClass "evdev keyboard catchall"
[ 5557.528] (II) Using input driver 'evdev' for 'Lite-On Technology Corp. Wireless Device'
[ 5557.528] (**) Lite-On Technology Corp. Wireless Device: always reports core events
[ 5557.528] (**) evdev: Lite-On Technology Corp. Wireless Device: Device: "/dev/input/event1"
[ 5557.528] (--) evdev: Lite-On Technology Corp. Wireless Device: Vendor 0x4ca Product 0x6f
[ 5557.528] (--) evdev: Lite-On Technology Corp. Wireless Device: Found 1 mouse buttons
[ 5557.528] (--) evdev: Lite-On Technology Corp. Wireless Device: Found scroll wheel(s)
[ 5557.528] (--) evdev: Lite-On Technology Corp. Wireless Device: Found relative axes
[ 5557.528] (II) evdev: Lite-On Technology Corp. Wireless Device: Forcing relative x/y axes to exist.
[ 5557.528] (--) evdev: Lite-On Technology Corp. Wireless Device: Found absolute axes
[ 5557.528] (II) evdev: Lite-On Technology Corp. Wireless Device: Forcing absolute x/y axes to exist.
[ 5557.528] (--) evdev: Lite-On Technology Corp. Wireless Device: Found keys
[ 5557.528] (II) evdev: Lite-On Technology Corp. Wireless Device: Configuring as mouse
[ 5557.528] (II) evdev: Lite-On Technology Corp. Wireless Device: Configuring as keyboard
[ 5557.528] (II) evdev: Lite-On Technology Corp. Wireless Device: Adding scrollwheel support
[ 5557.528] (**) evdev: Lite-On Technology Corp. Wireless Device: YAxisMapping: buttons 4 and 5
[ 5557.528] (**) evdev: Lite-On Technology Corp. Wireless Device: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[ 5557.528] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.2/usb4/4-1/4-1:1.1/0003:04CA:006F.0006/input/input19/event1"
[ 5557.528] (II) XINPUT: Adding extended input device "Lite-On Technology Corp. Wireless Device" (type: KEYBOARD, id 8)
[ 5557.528] (**) Option "xkb_rules" "evdev"
[ 5557.528] (**) Option "xkb_model" "pc104"
[ 5557.528] (**) Option "xkb_layout" "us,il"
[ 5557.528] (**) Option "xkb_variant" ","
[ 5557.528] (**) Option "xkb_options" "grp:alt_shift_toggle,grp_led:scroll"
[ 5557.528] (II) evdev: Lite-On Technology Corp. Wireless Device: initialized for relative axes.
[ 5557.528] (WW) evdev: Lite-On Technology Corp. Wireless Device: ignoring absolute axes.
[ 5557.528] (**) Lite-On Technology Corp. Wireless Device: (accel) keeping acceleration scheme 1
[ 5557.528] (**) Lite-On Technology Corp. Wireless Device: (accel) acceleration profile 0
[ 5557.528] (**) Lite-On Technology Corp. Wireless Device: (accel) acceleration factor: 2.000
[ 5557.528] (**) Lite-On Technology Corp. Wireless Device: (accel) acceleration threshold: 4
[ 5557.529] (II) config/udev: Adding input device Lite-On Technology Corp. Wireless Device (/dev/input/event0)
[ 5557.529] (**) Lite-On Technology Corp. Wireless Device: Applying InputClass "evdev keyboard catchall"
[ 5557.529] (II) Using input driver 'evdev' for 'Lite-On Technology Corp. Wireless Device'
[ 5557.529] (**) Lite-On Technology Corp. Wireless Device: always reports core events
[ 5557.529] (**) evdev: Lite-On Technology Corp. Wireless Device: Device: "/dev/input/event0"
[ 5557.529] (--) evdev: Lite-On Technology Corp. Wireless Device: Vendor 0x4ca Product 0x6f
[ 5557.529] (--) evdev: Lite-On Technology Corp. Wireless Device: Found keys
[ 5557.529] (II) evdev: Lite-On Technology Corp. Wireless Device: Configuring as keyboard
[ 5557.529] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.2/usb4/4-1/4-1:1.0/0003:04CA:006F.0005/input/input18/event0"
[ 5557.529] (II) XINPUT: Adding extended input device "Lite-On Technology Corp. Wireless Device" (type: KEYBOARD, id 9)
[ 5557.529] (**) Option "xkb_rules" "evdev"
[ 5557.529] (**) Option "xkb_model" "pc104"
[ 5557.529] (**) Option "xkb_layout" "us,il"
[ 5557.529] (**) Option "xkb_variant" ","
[ 5557.529] (**) Option "xkb_options" "grp:alt_shift_toggle,grp_led:scroll"
[ 5557.568] (II) config/udev: Adding input device Lite-On Technology Corp. Wireless Device (/dev/input/event2)
[ 5557.568] (**) Lite-On Technology Corp. Wireless Device: Applying InputClass "evdev pointer catchall"
[ 5557.568] (II) Using input driver 'evdev' for 'Lite-On Technology Corp. Wireless Device'
[ 5557.568] (**) Lite-On Technology Corp. Wireless Device: always reports core events
[ 5557.568] (**) evdev: Lite-On Technology Corp. Wireless Device: Device: "/dev/input/event2"
[ 5557.624] (--) evdev: Lite-On Technology Corp. Wireless Device: Vendor 0x4ca Product 0x6f
[ 5557.624] (--) evdev: Lite-On Technology Corp. Wireless Device: Found 3 mouse buttons
[ 5557.624] (--) evdev: Lite-On Technology Corp. Wireless Device: Found scroll wheel(s)
[ 5557.624] (--) evdev: Lite-On Technology Corp. Wireless Device: Found relative axes
[ 5557.624] (--) evdev: Lite-On Technology Corp. Wireless Device: Found x and y relative axes
[ 5557.624] (II) evdev: Lite-On Technology Corp. Wireless Device: Configuring as mouse
[ 5557.624] (II) evdev: Lite-On Technology Corp. Wireless Device: Adding scrollwheel support
[ 5557.624] (**) evdev: Lite-On Technology Corp. Wireless Device: YAxisMapping: buttons 4 and 5
[ 5557.624] (**) evdev: Lite-On Technology Corp. Wireless Device: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[ 5557.624] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.2/usb4/4-1/4-1:1.2/0003:04CA:006F.0007/input/input20/event2"
[ 5557.624] (II) XINPUT: Adding extended input device "Lite-On Technology Corp. Wireless Device" (type: MOUSE, id 10)
[ 5557.624] (II) evdev: Lite-On Technology Corp. Wireless Device: initialized for relative axes.
[ 5557.624] (**) Lite-On Technology Corp. Wireless Device: (accel) keeping acceleration scheme 1
[ 5557.624] (**) Lite-On Technology Corp. Wireless Device: (accel) acceleration profile 0
[ 5557.624] (**) Lite-On Technology Corp. Wireless Device: (accel) acceleration factor: 2.000
[ 5557.624] (**) Lite-On Technology Corp. Wireless Device: (accel) acceleration threshold: 4
[ 5574.479] (II) fglrx(0): EDID vendor "GSM", prod id 20128
[ 5574.479] (II) fglrx(0): Using EDID range info for horizontal sync
[ 5574.479] (II) fglrx(0): Using EDID range info for vertical refresh
[ 5574.479] (II) fglrx(0): Printing DDC gathered Modelines:
[ 5574.479] (II) fglrx(0): Modeline "1600x900"x0.0 108.00 1600 1624 1704 1800 900 901 904 1000 +hsync +vsync (60.0 kHz eP)
[ 5574.479] (II) fglrx(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
[ 5574.479] (II) fglrx(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
[ 5574.479] (II) fglrx(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
[ 5574.479] (II) fglrx(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
[ 5574.479] (II) fglrx(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
[ 5574.479] (II) fglrx(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
[ 5574.479] (II) fglrx(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
[ 5574.479] (II) fglrx(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
[ 5574.479] (II) fglrx(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
[ 5574.479] (II) fglrx(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
[ 5574.479] (II) fglrx(0): Modeline "1600x900"x60.0 119.00 1600 1696 1864 2128 900 901 904 932 -hsync +vsync (55.9 kHz e)
[ 5574.479] (II) fglrx(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[ 5582.278] (II) fglrx(0): EDID vendor "GSM", prod id 20128
[ 5582.278] (II) fglrx(0): Using hsync ranges from config file
[ 5582.278] (II) fglrx(0): Using vrefresh ranges from config file
[ 5582.278] (II) fglrx(0): Printing DDC gathered Modelines:
[ 5582.278] (II) fglrx(0): Modeline "1600x900"x0.0 108.00 1600 1624 1704 1800 900 901 904 1000 +hsync +vsync (60.0 kHz eP)
[ 5582.278] (II) fglrx(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
[ 5582.278] (II) fglrx(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
[ 5582.278] (II) fglrx(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
[ 5582.278] (II) fglrx(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
[ 5582.278] (II) fglrx(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
[ 5582.278] (II) fglrx(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
[ 5582.278] (II) fglrx(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
[ 5582.278] (II) fglrx(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
[ 5582.278] (II) fglrx(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
[ 5582.278] (II) fglrx(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
[ 5582.278] (II) fglrx(0): Modeline "1600x900"x60.0 119.00 1600 1696 1864 2128 900 901 904 932 -hsync +vsync (55.9 kHz e)
[ 5582.278] (II) fglrx(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[ 5582.369] (II) fglrx(0): EDID vendor "GSM", prod id 20128
[ 5582.369] (II) fglrx(0): Using hsync ranges from config file
[ 5582.369] (II) fglrx(0): Using vrefresh ranges from config file
[ 5582.369] (II) fglrx(0): Printing DDC gathered Modelines:
[ 5582.369] (II) fglrx(0): Modeline "1600x900"x0.0 108.00 1600 1624 1704 1800 900 901 904 1000 +hsync +vsync (60.0 kHz eP)
[ 5582.369] (II) fglrx(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
[ 5582.369] (II) fglrx(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
[ 5582.369] (II) fglrx(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
[ 5582.369] (II) fglrx(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
[ 5582.369] (II) fglrx(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
[ 5582.369] (II) fglrx(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
[ 5582.369] (II) fglrx(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
[ 5582.369] (II) fglrx(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
[ 5582.369] (II) fglrx(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
[ 5582.369] (II) fglrx(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
[ 5582.369] (II) fglrx(0): Modeline "1600x900"x60.0 119.00 1600 1696 1864 2128 900 901 904 932 -hsync +vsync (55.9 kHz e)
[ 5582.369] (II) fglrx(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
Bug script output from package glx-alternative-fglrx:
Diversions:
diversion of /usr/lib/arm-linux-gnueabihf/libGL.so to /usr/lib/mesa-diverted/arm-linux-gnueabihf/libGL.so by glx-diversions
diversion of /usr/lib/arm-linux-gnueabihf/libGL.so.1 to /usr/lib/mesa-diverted/arm-linux-gnueabihf/libGL.so.1 by glx-diversions
diversion of /usr/lib/arm-linux-gnueabihf/libGL.so.1.2 to /usr/lib/mesa-diverted/arm-linux-gnueabihf/libGL.so.1.2 by glx-diversions
diversion of /usr/lib/arm-linux-gnueabihf/libGL.so.1.2.0 to /usr/lib/mesa-diverted/arm-linux-gnueabihf/libGL.so.1.2.0 by glx-diversions
diversion of /usr/lib/arm-linux-gnueabihf/libGLESv1_CM.so to /usr/lib/mesa-diverted/arm-linux-gnueabihf/libGLESv1_CM.so by glx-diversions
diversion of /usr/lib/arm-linux-gnueabihf/libGLESv1_CM.so.1 to /usr/lib/mesa-diverted/arm-linux-gnueabihf/libGLESv1_CM.so.1 by glx-diversions
diversion of /usr/lib/arm-linux-gnueabihf/libGLESv1_CM.so.1.1.0 to /usr/lib/mesa-diverted/arm-linux-gnueabihf/libGLESv1_CM.so.1.1.0 by glx-diversions
diversion of /usr/lib/arm-linux-gnueabihf/libGLESv2.so to /usr/lib/mesa-diverted/arm-linux-gnueabihf/libGLESv2.so by glx-diversions
diversion of /usr/lib/arm-linux-gnueabihf/libGLESv2.so.2 to /usr/lib/mesa-diverted/arm-linux-gnueabihf/libGLESv2.so.2 by glx-diversions
diversion of /usr/lib/arm-linux-gnueabihf/libGLESv2.so.2.0.0 to /usr/lib/mesa-diverted/arm-linux-gnueabihf/libGLESv2.so.2.0.0 by glx-diversions
diversion of /usr/lib/i386-linux-gnu/libGL.so to /usr/lib/mesa-diverted/i386-linux-gnu/libGL.so by glx-diversions
diversion of /usr/lib/i386-linux-gnu/libGL.so.1 to /usr/lib/mesa-diverted/i386-linux-gnu/libGL.so.1 by glx-diversions
diversion of /usr/lib/i386-linux-gnu/libGL.so.1.2 to /usr/lib/mesa-diverted/i386-linux-gnu/libGL.so.1.2 by glx-diversions
diversion of /usr/lib/i386-linux-gnu/libGL.so.1.2.0 to /usr/lib/mesa-diverted/i386-linux-gnu/libGL.so.1.2.0 by glx-diversions
diversion of /usr/lib/i386-linux-gnu/libGLESv1_CM.so to /usr/lib/mesa-diverted/i386-linux-gnu/libGLESv1_CM.so by glx-diversions
diversion of /usr/lib/i386-linux-gnu/libGLESv1_CM.so.1 to /usr/lib/mesa-diverted/i386-linux-gnu/libGLESv1_CM.so.1 by glx-diversions
diversion of /usr/lib/i386-linux-gnu/libGLESv1_CM.so.1.1.0 to /usr/lib/mesa-diverted/i386-linux-gnu/libGLESv1_CM.so.1.1.0 by glx-diversions
diversion of /usr/lib/i386-linux-gnu/libGLESv2.so to /usr/lib/mesa-diverted/i386-linux-gnu/libGLESv2.so by glx-diversions
diversion of /usr/lib/i386-linux-gnu/libGLESv2.so.2 to /usr/lib/mesa-diverted/i386-linux-gnu/libGLESv2.so.2 by glx-diversions
diversion of /usr/lib/i386-linux-gnu/libGLESv2.so.2.0.0 to /usr/lib/mesa-diverted/i386-linux-gnu/libGLESv2.so.2.0.0 by glx-diversions
diversion of /usr/lib/libGL.so to /usr/lib/mesa-diverted/libGL.so by glx-diversions
diversion of /usr/lib/libGL.so.1 to /usr/lib/mesa-diverted/libGL.so.1 by glx-diversions
diversion of /usr/lib/libGL.so.1.2 to /usr/lib/mesa-diverted/libGL.so.1.2 by glx-diversions
diversion of /usr/lib/libGL.so.1.2.0 to /usr/lib/mesa-diverted/libGL.so.1.2.0 by glx-diversions
diversion of /usr/lib/libGLESv1_CM.so to /usr/lib/mesa-diverted/libGLESv1_CM.so by glx-diversions
diversion of /usr/lib/libGLESv1_CM.so.1 to /usr/lib/mesa-diverted/libGLESv1_CM.so.1 by glx-diversions
diversion of /usr/lib/libGLESv1_CM.so.1.1.0 to /usr/lib/mesa-diverted/libGLESv1_CM.so.1.1.0 by glx-diversions
diversion of /usr/lib/libGLESv2.so to /usr/lib/mesa-diverted/libGLESv2.so by glx-diversions
diversion of /usr/lib/libGLESv2.so.2 to /usr/lib/mesa-diverted/libGLESv2.so.2 by glx-diversions
diversion of /usr/lib/libGLESv2.so.2.0.0 to /usr/lib/mesa-diverted/libGLESv2.so.2.0.0 by glx-diversions
diversion of /usr/lib/x86_64-linux-gnu/libGL.so to /usr/lib/mesa-diverted/x86_64-linux-gnu/libGL.so by glx-diversions
diversion of /usr/lib/x86_64-linux-gnu/libGL.so.1 to /usr/lib/mesa-diverted/x86_64-linux-gnu/libGL.so.1 by glx-diversions
diversion of /usr/lib/x86_64-linux-gnu/libGL.so.1.2 to /usr/lib/mesa-diverted/x86_64-linux-gnu/libGL.so.1.2 by glx-diversions
diversion of /usr/lib/x86_64-linux-gnu/libGL.so.1.2.0 to /usr/lib/mesa-diverted/x86_64-linux-gnu/libGL.so.1.2.0 by glx-diversions
diversion of /usr/lib/x86_64-linux-gnu/libGLESv1_CM.so to /usr/lib/mesa-diverted/x86_64-linux-gnu/libGLESv1_CM.so by glx-diversions
diversion of /usr/lib/x86_64-linux-gnu/libGLESv1_CM.so.1 to /usr/lib/mesa-diverted/x86_64-linux-gnu/libGLESv1_CM.so.1 by glx-diversions
diversion of /usr/lib/x86_64-linux-gnu/libGLESv1_CM.so.1.1.0 to /usr/lib/mesa-diverted/x86_64-linux-gnu/libGLESv1_CM.so.1.1.0 by glx-diversions
diversion of /usr/lib/x86_64-linux-gnu/libGLESv2.so to /usr/lib/mesa-diverted/x86_64-linux-gnu/libGLESv2.so by glx-diversions
diversion of /usr/lib/x86_64-linux-gnu/libGLESv2.so.2 to /usr/lib/mesa-diverted/x86_64-linux-gnu/libGLESv2.so.2 by glx-diversions
diversion of /usr/lib/x86_64-linux-gnu/libGLESv2.so.2.0.0 to /usr/lib/mesa-diverted/x86_64-linux-gnu/libGLESv2.so.2.0.0 by glx-diversions
/usr/lib/mesa-diverted:
total 156
drwxr-xr-x 5 root root 4096 Sep 12 2013 .
drwxr-xr-x 262 root root 139264 Jun 29 23:00 ..
drwxr-xr-x 2 root root 4096 Aug 17 2013 arm-linux-gnueabihf
drwxr-xr-x 2 root root 4096 May 27 12:57 i386-linux-gnu
lrwxrwxrwx 1 root root 33 Jun 12 2013 libGL.so-master -> /etc/alternatives/libGL.so-master
lrwxrwxrwx 1 root root 19 Jul 9 2011 libGL.so.1.2 -> libGL.so.1.2.aa_ati
drwxr-xr-x 2 root root 4096 May 27 12:57 x86_64-linux-gnu
/usr/lib/mesa-diverted/i386-linux-gnu/:
total 448
drwxr-xr-x 2 root root 4096 May 27 12:57 .
drwxr-xr-x 5 root root 4096 Sep 12 2013 ..
lrwxrwxrwx 1 root root 14 May 11 14:12 libGL.so.1 -> libGL.so.1.2.0
-rw-r--r-- 1 root root 448200 May 11 14:12 libGL.so.1.2.0
/usr/lib/mesa-diverted/x86_64-linux-gnu/:
total 692
drwxr-xr-x 2 root root 4096 May 27 12:57 .
drwxr-xr-x 5 root root 4096 Sep 12 2013 ..
lrwxrwxrwx 1 root root 15 May 11 14:11 libEGL.so -> libEGL.so.1.0.0
lrwxrwxrwx 1 root root 15 May 11 14:11 libEGL.so.1 -> libEGL.so.1.0.0
-rw-r--r-- 1 root root 202400 May 11 14:11 libEGL.so.1.0.0
lrwxrwxrwx 1 root root 14 May 11 14:11 libGL.so -> libGL.so.1.2.0
lrwxrwxrwx 1 root root 14 May 11 14:11 libGL.so.1 -> libGL.so.1.2.0
-rw-r--r-- 1 root root 459392 May 11 14:11 libGL.so.1.2.0
lrwxrwxrwx 1 root root 18 May 11 14:11 libGLESv2.so.2 -> libGLESv2.so.2.0.0
-rw-r--r-- 1 root root 30496 May 11 14:11 libGLESv2.so.2.0.0
Alternative 'glx':
glx - auto mode
link best version is /usr/lib/fglrx
link currently points to /usr/lib/fglrx
link glx is /usr/lib/glx
slave glx--fglrx-blacklists-radeon.conf is /etc/modprobe.d/fglrx-blacklists-radeon.conf
slave glx--fglrx_drv.so is /usr/lib/xorg/modules/drivers/fglrx_drv.so
slave glx--libEGL.so.1-x86_64-linux-gnu is /usr/lib/x86_64-linux-gnu/libEGL.so.1
slave glx--libGL.so.1-i386-linux-gnu is /usr/lib/i386-linux-gnu/libGL.so.1
slave glx--libGL.so.1-x86_64-linux-gnu is /usr/lib/x86_64-linux-gnu/libGL.so.1
slave glx--libGLESv2.so.2-x86_64-linux-gnu is /usr/lib/x86_64-linux-gnu/libGLESv2.so.2
slave glx--linux-libglx.so is /usr/lib/xorg/modules/linux/libglx.so
/usr/lib/fglrx - priority 99
slave glx--fglrx-blacklists-radeon.conf: /etc/ati/fglrx-blacklists-radeon.conf
slave glx--fglrx_drv.so: /usr/lib/fglrx/fglrx_drv.so
slave glx--libEGL.so.1-x86_64-linux-gnu: /usr/lib/mesa-diverted/x86_64-linux-gnu/libEGL.so.1
slave glx--libGL.so.1-i386-linux-gnu: /usr/lib/i386-linux-gnu/fglrx/libGL.so.1
slave glx--libGL.so.1-x86_64-linux-gnu: /usr/lib/x86_64-linux-gnu/fglrx/libGL.so.1
slave glx--libGLESv2.so.2-x86_64-linux-gnu: /usr/lib/mesa-diverted/x86_64-linux-gnu/libGLESv2.so.2
slave glx--linux-libglx.so: /usr/lib/fglrx/fglrx-libglx.so
/usr/lib/fglrx/igpu - priority 90
slave glx--fglrx-blacklists-radeon.conf: /etc/ati/fglrx-blacklists-radeon.conf
slave glx--fglrx_drv.so: /usr/lib/fglrx/fglrx_drv.so
slave glx--libEGL.so.1-x86_64-linux-gnu: /usr/lib/mesa-diverted/x86_64-linux-gnu/libEGL.so.1
slave glx--libGL.so.1-i386-linux-gnu: /usr/lib/mesa-diverted/i386-linux-gnu/libGL.so.1
slave glx--libGL.so.1-x86_64-linux-gnu: /usr/lib/mesa-diverted/x86_64-linux-gnu/libGL.so.1
slave glx--libGLESv2.so.2-x86_64-linux-gnu: /usr/lib/mesa-diverted/x86_64-linux-gnu/libGLESv2.so.2
/usr/lib/mesa-diverted - priority 5
slave glx--libEGL.so.1-x86_64-linux-gnu: /usr/lib/mesa-diverted/x86_64-linux-gnu/libEGL.so.1
slave glx--libGL.so.1-i386-linux-gnu: /usr/lib/mesa-diverted/i386-linux-gnu/libGL.so.1
slave glx--libGL.so.1-x86_64-linux-gnu: /usr/lib/mesa-diverted/x86_64-linux-gnu/libGL.so.1
slave glx--libGLESv2.so.2-x86_64-linux-gnu: /usr/lib/mesa-diverted/x86_64-linux-gnu/libGLESv2.so.2
lrwxrwxrwx 1 root root 14 Oct 23 2014 /etc/alternatives/glx -> /usr/lib/fglrx
lrwxrwxrwx 1 root root 37 Oct 23 2014 /etc/alternatives/glx--fglrx-blacklists-radeon.conf -> /etc/ati/fglrx-blacklists-radeon.conf
lrwxrwxrwx 1 root root 27 Oct 23 2014 /etc/alternatives/glx--fglrx_drv.so -> /usr/lib/fglrx/fglrx_drv.so
lrwxrwxrwx 1 root root 49 Jun 16 2015 /etc/alternatives/glx--libEGL.so-x86_64-linux-gnu -> /usr/lib/mesa-diverted/x86_64-linux-gnu/libEGL.so
lrwxrwxrwx 1 root root 51 Oct 23 2014 /etc/alternatives/glx--libEGL.so.1-x86_64-linux-gnu -> /usr/lib/mesa-diverted/x86_64-linux-gnu/libEGL.so.1
lrwxrwxrwx 1 root root 48 Jun 16 2015 /etc/alternatives/glx--libGL.so-x86_64-linux-gnu -> /usr/lib/mesa-diverted/x86_64-linux-gnu/libGL.so
lrwxrwxrwx 1 root root 40 Oct 23 2014 /etc/alternatives/glx--libGL.so.1-i386-linux-gnu -> /usr/lib/i386-linux-gnu/fglrx/libGL.so.1
lrwxrwxrwx 1 root root 42 Oct 23 2014 /etc/alternatives/glx--libGL.so.1-x86_64-linux-gnu -> /usr/lib/x86_64-linux-gnu/fglrx/libGL.so.1
lrwxrwxrwx 1 root root 54 Oct 23 2014 /etc/alternatives/glx--libGLESv2.so.2-x86_64-linux-gnu -> /usr/lib/mesa-diverted/x86_64-linux-gnu/libGLESv2.so.2
lrwxrwxrwx 1 root root 30 Oct 23 2014 /etc/alternatives/glx--linux-libglx.so -> /usr/lib/fglrx/fglrx-libglx.so
File System:
lrwxrwxrwx 1 root root 21 Sep 8 2011 /usr/lib/glx -> /etc/alternatives/glx
lrwxrwxrwx 1 root root 48 Dec 13 2013 /usr/lib/i386-linux-gnu/libGL.so.1 -> /etc/alternatives/glx--libGL.so.1-i386-linux-gnu
lrwxrwxrwx 1 root root 19 Jul 10 2011 /usr/lib/libGL.so.1.2 -> libGL.so.1.2.aa_ati
-rwxr-xr-x 1 root root 752736 Oct 30 2007 /usr/lib/libGL.so.1.2.aa_ati
lrwxrwxrwx 1 root root 48 Jun 12 2013 /usr/lib/x86_64-linux-gnu/libGL.so -> /etc/alternatives/glx--libGL.so-x86_64-linux-gnu
lrwxrwxrwx 1 root root 50 Dec 13 2013 /usr/lib/x86_64-linux-gnu/libGL.so.1 -> /etc/alternatives/glx--libGL.so.1-x86_64-linux-gnu
lrwxrwxrwx 1 root root 35 Dec 13 2013 /usr/lib/xorg/modules/drivers/fglrx_drv.so -> /etc/alternatives/glx--fglrx_drv.so
-rw-r--r-- 1 root root 2970648 Apr 24 2007 /usr/lib/xorg/modules/drivers/fglrx_drv.so.bkup
-rw-r--r-- 1 root root 2970648 Apr 24 2007 /usr/lib/xorg/modules/drivers/fglrx_drv.so.fix
-rw-r--r-- 1 root root 66792 May 8 2015 /usr/lib/xorg/modules/drivers/neomagic_drv.so
-rw-r--r-- 1 root root 214960 Dec 11 2015 /usr/lib/xorg/modules/drivers/nouveau_drv.so
-rw-r--r-- 1 root root 290160 Oct 28 2015 /usr/lib/xorg/modules/extensions/libglx.so
-- System Information:
Debian Release: stretch/sid
APT prefers unstable
APT policy: (990, 'unstable'), (500, 'oldstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386
Kernel: Linux 4.6.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=he_IL.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)
Versions of packages fglrx-modules-dkms depends on:
ii dkms 2.2.0.3-4
fglrx-modules-dkms recommends no packages.
Versions of packages fglrx-modules-dkms suggests:
ii fglrx-driver 1:15.12-2
Versions of packages fglrx-driver depends on:
ii debconf [debconf-2.0] 1.5.59
ii glx-alternative-fglrx 0.7.2
ii libc6 2.22-13
ii libfglrx 1:15.12-2
ii libgl1-mesa-glx [libgl1] 11.2.2-1
ii libstdc++6 6.1.1-7
ii libx11-6 2:1.6.3-1
ii libxext6 2:1.3.3-1
ii libxrandr2 2:1.5.0-1
ii libxrender1 1:0.9.9-2
pn xorg-video-abi-19 | xorg-video-abi-18 | xorg-video-abi-15 | xorg <none>
pn xserver-xorg-core <none>
Versions of packages fglrx-driver recommends:
ii fglrx-atieventsd 1:15.12-2
ii libgl1-fglrx-glx 1:15.12-2
ii libgl1-fglrx-glx-i386 1:15.12-2
Versions of packages fglrx-driver suggests:
ii amd-opencl-icd 1:15.12-2
ii fglrx-control 1:15.12-2
ii libfglrx-amdxvba1 1:15.12-2
Versions of packages xserver-xorg-video-intel depends on:
ii libc6 2.22-13
ii libdrm-intel1 2.4.68-1
ii libdrm2 2.4.68-1
ii libpciaccess0 0.13.4-1
ii libpixman-1-0 0.33.6-1
ii libudev1 230-3
ii libx11-6 2:1.6.3-1
ii libx11-xcb1 2:1.6.3-1
ii libxcb-dri2-0 1.11.1-1
ii libxcb-dri3-0 1.11.1-1
ii libxcb-sync1 1.11.1-1
ii libxcb-util0 0.3.8-3
ii libxcb1 1.11.1-1
ii libxcursor1 1:1.1.14-1+b1
ii libxdamage1 1:1.1.4-2+b1
ii libxext6 2:1.3.3-1
ii libxfixes3 1:5.0.2-1
ii libxinerama1 2:1.1.3-1+b1
ii libxrandr2 2:1.5.0-1
ii libxrender1 1:0.9.9-2
ii libxshmfence1 1.2-1
ii libxtst6 2:1.2.2-1+b1
ii libxv1 2:1.0.10-1+b1
ii libxvmc1 2:1.0.9-1
pn xorg-video-abi-19 <none>
pn xserver-xorg-core <none>
Versions of packages fglrx-modules-dkms is related to:
pn ia32-libs <none>
ii libdrm-radeon1 2.4.68-1
pn linux-headers <none>
ii xserver-xorg 1:7.7+15
pn xserver-xorg-core <none>
pn xserver-xorg-video-ati <none>
pn xserver-xorg-video-radeon <none>
-- debconf information:
fglrx-driver/check-xorg-conf-on-removal: true
* fglrx-driver/needs-xorg-conf-to-enable:
* fglrx-driver/removed-but-enabled-in-xorg-conf:
More information about the Pkg-fglrx-devel
mailing list