LINUX.ORG.RU

arch + xorg + устройства ввода

 , , ,


0

1

Привет. Столкнулся с такой проблемой: выгружаю базовую систему арча в папку, чрутюсь туда, ставлю все необходимое для иксов(xorg-server xorg-drivers и прочее), запускаю dbus в чруте и запускаю иксы.
В результате иксы, конечно, запускаются, но устройства ввода(трекпоинт и клава) не работают. Затем я беру усб-мышь, втыкаю ее в ноут и вуаля, мыша работает. Проблема точно такая же, как тут - http://archlinux.org.ru/forum/viewtopic.php?f=8&t=9934
Есть подозрение, что это косячит системд-удев-что-то-из-этой-серии.

#
# Catch-all evdev loader for udev-based systems
# We don't simply match on any device since that also adds accelerometers
# and other devices that we don't really want to use. The list below
# matches everything but joysticks.

Section "InputClass"
        Identifier "evdev pointer catchall"
        MatchIsPointer "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev keyboard catchall"
        MatchIsKeyboard "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev touchpad catchall"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev tablet catchall"
        MatchIsTablet "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev touchscreen catchall"
        MatchIsTouchscreen "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection
[root@thinkpad /]# cat /var/log/Xorg.0.log
[  1992.354] 
X.Org X Server 1.13.0
Release Date: 2012-09-05
[  1992.354] X Protocol Version 11, Revision 0
[  1992.354] Build Operating System: Linux 3.6.0-1-ARCH x86_64 
[  1992.354] Current Operating System: Linux thinkpad 3.5.6-1-ARCH #1 SMP PREEMPT Sun Oct 7 19:30:49 CEST 2012 x86_64
[  1992.354] Kernel command line: root=/dev/sda1 ro initrd=../initramfs-linux.img BOOT_IMAGE=../vmlinuz-linux 
[  1992.354] Build Date: 05 October 2012  01:57:18PM
[  1992.354]  
[  1992.355] Current version of pixman: 0.26.2
[  1992.355] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[  1992.355] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  1992.355] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Oct 15 14:52:29 2012
[  1992.356] (==) Using config directory: "/etc/X11/xorg.conf.d"
[  1992.356] (==) No Layout section.  Using the first Screen section.
[  1992.356] (==) No screen section available. Using defaults.
[  1992.356] (**) |-->Screen "Default Screen Section" (0)
[  1992.356] (**) |   |-->Monitor "<default monitor>"
[  1992.357] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[  1992.357] (==) Automatically adding devices
[  1992.357] (==) Automatically enabling devices
[  1992.357] (==) Automatically adding GPU devices
[  1992.357] (WW) The directory "/usr/share/fonts/TTF/" does not exist.
[  1992.357] 	Entry deleted from font path.
[  1992.357] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[  1992.357] 	Entry deleted from font path.
[  1992.357] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
[  1992.357] 	Entry deleted from font path.
[  1992.357] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[  1992.357] 	Entry deleted from font path.
[  1992.357] 	(Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[  1992.357] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[  1992.357] 	Entry deleted from font path.
[  1992.357] 	(Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
[  1992.357] (==) FontPath set to:
	/usr/share/fonts/misc/
[  1992.357] (==) ModulePath set to "/usr/lib/xorg/modules"
[  1992.357] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[  1992.357] (II) Loader magic: 0x7fcc20
[  1992.357] (II) Module ABI versions:
[  1992.357] 	X.Org ANSI C Emulation: 0.4
[  1992.357] 	X.Org Video Driver: 13.0
[  1992.357] 	X.Org XInput driver : 18.0
[  1992.357] 	X.Org Server Extension : 7.0
[  1992.359] (II) config/udev: Adding drm device (/dev/dri/card0)
[  1992.361] (--) PCI:*(0:0:2:0) 8086:0046:17aa:215a rev 2, Mem @ 0xf2000000/4194304, 0xd0000000/268435456, I/O @ 0x00001800/8
[  1992.361] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[  1992.361] Initializing built-in extension Generic Event Extension
[  1992.361] Initializing built-in extension SHAPE
[  1992.361] Initializing built-in extension MIT-SHM
[  1992.361] Initializing built-in extension XInputExtension
[  1992.361] Initializing built-in extension XTEST
[  1992.361] Initializing built-in extension BIG-REQUESTS
[  1992.361] Initializing built-in extension SYNC
[  1992.361] Initializing built-in extension XKEYBOARD
[  1992.361] Initializing built-in extension XC-MISC
[  1992.361] Initializing built-in extension SECURITY
[  1992.361] Initializing built-in extension XINERAMA
[  1992.361] Initializing built-in extension XFIXES
[  1992.361] Initializing built-in extension RENDER
[  1992.361] Initializing built-in extension RANDR
[  1992.361] Initializing built-in extension COMPOSITE
[  1992.361] Initializing built-in extension DAMAGE
[  1992.361] Initializing built-in extension MIT-SCREEN-SAVER
[  1992.361] Initializing built-in extension DOUBLE-BUFFER
[  1992.361] Initializing built-in extension RECORD
[  1992.361] Initializing built-in extension DPMS
[  1992.361] Initializing built-in extension X-Resource
[  1992.361] Initializing built-in extension XVideo
[  1992.361] Initializing built-in extension XVideo-MotionCompensation
[  1992.361] Initializing built-in extension XFree86-VidModeExtension
[  1992.361] Initializing built-in extension XFree86-DGA
[  1992.362] Initializing built-in extension XFree86-DRI
[  1992.362] Initializing built-in extension DRI2
[  1992.362] (II) LoadModule: "glx"
[  1992.362] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[  1992.362] (II) Module glx: vendor="X.Org Foundation"
[  1992.362] 	compiled for 1.13.0, module version = 1.0.0
[  1992.362] 	ABI class: X.Org Server Extension, version 7.0
[  1992.362] (==) AIGLX enabled
[  1992.363] Loading extension GLX
[  1992.363] (==) Matched intel as autoconfigured driver 0
[  1992.363] (==) Matched intel as autoconfigured driver 1
[  1992.363] (==) Matched vesa as autoconfigured driver 2
[  1992.363] (==) Matched modesetting as autoconfigured driver 3
[  1992.363] (==) Matched fbdev as autoconfigured driver 4
[  1992.363] (==) Assigned the driver to the xf86ConfigLayout
[  1992.363] (II) LoadModule: "intel"
[  1992.363] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[  1992.364] (II) Module intel: vendor="X.Org Foundation"
[  1992.364] 	compiled for 1.13.0, module version = 2.20.9
[  1992.364] 	Module class: X.Org Video Driver
[  1992.364] 	ABI class: X.Org Video Driver, version 13.0
[  1992.364] (II) LoadModule: "vesa"
[  1992.364] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[  1992.364] (II) Module vesa: vendor="X.Org Foundation"
[  1992.364] 	compiled for 1.13.0, module version = 2.3.2
[  1992.364] 	Module class: X.Org Video Driver
[  1992.364] 	ABI class: X.Org Video Driver, version 13.0
[  1992.364] (II) LoadModule: "modesetting"
[  1992.365] (WW) Warning, couldn't open module modesetting
[  1992.365] (II) UnloadModule: "modesetting"
[  1992.365] (II) Unloading modesetting
[  1992.365] (EE) Failed to load module "modesetting" (module does not exist, 0)
[  1992.365] (II) LoadModule: "fbdev"
[  1992.365] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
[  1992.365] (II) Module fbdev: vendor="X.Org Foundation"
[  1992.365] 	compiled for 1.13.0, module version = 0.4.3
[  1992.365] 	Module class: X.Org Video Driver
[  1992.365] 	ABI class: X.Org Video Driver, version 13.0
[  1992.365] (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
	i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G, 915G,
	E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G,
	965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45,
	4 Series, G45/G43, Q45/Q43, G41, B43, B43, Clarkdale, Arrandale,
	Sandybridge Desktop (GT1), Sandybridge Desktop (GT2),
	Sandybridge Desktop (GT2+), Sandybridge Mobile (GT1),
	Sandybridge Mobile (GT2), Sandybridge Mobile (GT2+),
	Sandybridge Server, Ivybridge Mobile (GT1), Ivybridge Mobile (GT2),
	Ivybridge Desktop (GT1), Ivybridge Desktop (GT2), Ivybridge Server,
	Ivybridge Server (GT2), Haswell Desktop (GT1), Haswell Desktop (GT2),
	Haswell Desktop (GT2+), Haswell Mobile (GT1), Haswell Mobile (GT2),
	Haswell Mobile (GT2+), Haswell Server (GT1), Haswell Server (GT2),
	Haswell Server (GT2+), Haswell SDV Desktop (GT1),
	Haswell SDV Desktop (GT2), Haswell SDV Desktop (GT2+),
	Haswell SDV Mobile (GT1), Haswell SDV Mobile (GT2),
	Haswell SDV Mobile (GT2+), Haswell SDV Server (GT1),
	Haswell SDV Server (GT2), Haswell SDV Server (GT2+),
	Haswell ULT Desktop (GT1), Haswell ULT Desktop (GT2),
	Haswell ULT Desktop (GT2+), Haswell ULT Mobile (GT1),
	Haswell ULT Mobile (GT2), Haswell ULT Mobile (GT2+),
	Haswell ULT Server (GT1), Haswell ULT Server (GT2),
	Haswell ULT Server (GT2+), Haswell CRW Desktop (GT1),
	Haswell CRW Desktop (GT2), Haswell CRW Desktop (GT2+),
	Haswell CRW Mobile (GT1), Haswell CRW Mobile (GT2),
	Haswell CRW Mobile (GT2+), Haswell CRW Server (GT1),
	Haswell CRW Server (GT2), Haswell CRW Server (GT2+),
	ValleyView PO board
[  1992.366] (II) VESA: driver for VESA chipsets: vesa
[  1992.366] (II) FBDEV: driver for framebuffer: fbdev
[  1992.366] (--) using VT number 7

[  1992.369] (II) intel(0): using device path '/dev/dri/card0'
[  1992.369] (WW) Falling back to old probe method for vesa
[  1992.369] (WW) Falling back to old probe method for fbdev
[  1992.369] (II) Loading sub module "fbdevhw"
[  1992.369] (II) LoadModule: "fbdevhw"
[  1992.370] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
[  1992.370] (II) Module fbdevhw: vendor="X.Org Foundation"
[  1992.370] 	compiled for 1.13.0, module version = 0.0.2
[  1992.370] 	ABI class: X.Org Video Driver, version 13.0
[  1992.370] (II) intel(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[  1992.370] (==) intel(0): Depth 24, (--) framebuffer bpp 32
[  1992.370] (==) intel(0): RGB weight 888
[  1992.370] (==) intel(0): Default visual is TrueColor
[  1992.370] (--) intel(0): Integrated Graphics Chipset: Intel(R) Arrandale
[  1992.370] (**) intel(0): Relaxed fencing enabled
[  1992.370] (**) intel(0): Wait on SwapBuffers? enabled
[  1992.370] (**) intel(0): Triple buffering? enabled
[  1992.370] (**) intel(0): Framebuffer tiled
[  1992.370] (**) intel(0): Pixmaps tiled
[  1992.370] (**) intel(0): 3D buffers tiled
[  1992.370] (**) intel(0): SwapBuffers wait enabled
[  1992.370] (==) intel(0): video overlay key set to 0x101fe
[  1992.370] (II) intel(0): Output LVDS1 has no monitor section
[  1992.371] (--) intel(0): found backlight control interface /sys/class/backlight/acpi_video0
[  1992.371] (II) intel(0): Output VGA1 has no monitor section
[  1992.383] (II) intel(0): Output HDMI1 has no monitor section
[  1992.423] (II) intel(0): Output DP1 has no monitor section
[  1992.423] (II) intel(0): EDID for output LVDS1
[  1992.423] (II) intel(0): Manufacturer: LEN  Model: 4011  Serial#: 0
[  1992.423] (II) intel(0): Year: 2009  Week: 1
[  1992.423] (II) intel(0): EDID Version: 1.3
[  1992.423] (II) intel(0): Digital Display Input
[  1992.423] (II) intel(0): Max Image Size [cm]: horiz.: 26  vert.: 16
[  1992.423] (II) intel(0): Gamma: 2.20
[  1992.423] (II) intel(0): DPMS capabilities: StandBy Suspend Off
[  1992.423] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[  1992.423] (II) intel(0): First detailed timing is preferred mode
[  1992.423] (II) intel(0): redX: 0.560 redY: 0.350   greenX: 0.345 greenY: 0.560
[  1992.423] (II) intel(0): blueX: 0.150 blueY: 0.105   whiteX: 0.313 whiteY: 0.329
[  1992.423] (II) intel(0): Manufacturer's mask: 0
[  1992.423] (II) intel(0): Supported detailed timing:
[  1992.423] (II) intel(0): clock: 69.3 MHz   Image Size:  261 x 163 mm
[  1992.423] (II) intel(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1403 h_border: 0
[  1992.423] (II) intel(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 821 v_border: 0
[  1992.423] (II) intel(0): Supported detailed timing:
[  1992.423] (II) intel(0): clock: 57.6 MHz   Image Size:  261 x 163 mm
[  1992.423] (II) intel(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1403 h_border: 0
[  1992.423] (II) intel(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 821 v_border: 0
[  1992.423] (II) intel(0): Unknown vendor-specific block f
[  1992.423] (II) intel(0):  B121EW09 V3
[  1992.423] (II) intel(0): EDID (in hex):
[  1992.423] (II) intel(0): 	00ffffffffffff0030ae114000000000
[  1992.423] (II) intel(0): 	01130103801a1078ea65858f59588f26
[  1992.423] (II) intel(0): 	1b505400000001010101010101010101
[  1992.423] (II) intel(0): 	010101010101121b007b502015303020
[  1992.423] (II) intel(0): 	360005a3100000187f16007b50201530
[  1992.423] (II) intel(0): 	3020360005a3100000180000000f0081
[  1992.423] (II) intel(0): 	0a3c810a3216090006af5633000000fe
[  1992.423] (II) intel(0): 	004231323145573039205633200a009b
[  1992.423] (II) intel(0): EDID vendor "LEN", prod id 16401
[  1992.423] (II) intel(0): Printing DDC gathered Modelines:
[  1992.423] (II) intel(0): Modeline "1280x800"x0.0   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz eP)
[  1992.423] (II) intel(0): Modeline "1280x800"x0.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz e)
[  1992.423] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
[  1992.423] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[  1992.423] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[  1992.423] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
[  1992.423] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
[  1992.423] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
[  1992.423] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
[  1992.423] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
[  1992.424] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
[  1992.424] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
[  1992.424] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
[  1992.424] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported)
[  1992.424] (II) intel(0): Printing probed modes for output LVDS1
[  1992.424] (II) intel(0): Modeline "1280x800"x60.2   69.30  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (49.4 kHz eP)
[  1992.424] (II) intel(0): Modeline "1280x800"x50.0   57.59  1280 1328 1360 1403  800 803 809 821 -hsync -vsync (41.0 kHz e)
[  1992.424] (II) intel(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[  1992.424] (II) intel(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[  1992.424] (II) intel(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[  1992.424] (II) intel(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[  1992.424] (II) intel(0): EDID for output VGA1
[  1992.436] (II) intel(0): EDID for output HDMI1
[  1992.476] (II) intel(0): EDID for output DP1
[  1992.476] (II) intel(0): Output LVDS1 connected
[  1992.476] (II) intel(0): Output VGA1 disconnected
[  1992.476] (II) intel(0): Output HDMI1 disconnected
[  1992.476] (II) intel(0): Output DP1 disconnected
[  1992.476] (II) intel(0): Using exact sizes for initial modes
[  1992.476] (II) intel(0): Output LVDS1 using initial mode 1280x800
[  1992.476] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[  1992.476] (II) intel(0): Kernel page flipping support detected, enabling
[  1992.476] (**) intel(0): Display dimensions: (260, 160) mm
[  1992.476] (**) intel(0): DPI set to (125, 127)
[  1992.476] (II) Loading sub module "fb"
[  1992.476] (II) LoadModule: "fb"
[  1992.477] (II) Loading /usr/lib/xorg/modules/libfb.so
[  1992.477] (II) Module fb: vendor="X.Org Foundation"
[  1992.477] 	compiled for 1.13.0, module version = 1.0.0
[  1992.477] 	ABI class: X.Org ANSI C Emulation, version 0.4
[  1992.477] (II) Loading sub module "dri2"
[  1992.477] (II) LoadModule: "dri2"
[  1992.477] (II) Module "dri2" already built-in
[  1992.477] (II) UnloadModule: "vesa"
[  1992.477] (II) Unloading vesa
[  1992.477] (II) UnloadModule: "fbdev"
[  1992.477] (II) Unloading fbdev
[  1992.477] (II) UnloadSubModule: "fbdevhw"
[  1992.477] (II) Unloading fbdevhw
[  1992.477] (==) Depth 24 pixmap format is 32 bpp
[  1992.477] (II) intel(0): [DRI2] Setup complete
[  1992.477] (II) intel(0): [DRI2]   DRI driver: i965
[  1992.477] (II) intel(0): Allocated new frame buffer 1280x800 stride 5120, tiled
[  1992.488] (II) UXA(0): Driver registered support for the following operations:
[  1992.488] (II)         solid
[  1992.488] (II)         copy
[  1992.488] (II)         composite (RENDER acceleration)
[  1992.488] (II)         put_image
[  1992.488] (II)         get_image
[  1992.488] (==) intel(0): Backing store disabled
[  1992.488] (==) intel(0): Silken mouse enabled
[  1992.488] (II) intel(0): Initializing HW Cursor
[  1992.488] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[  1992.490] (==) intel(0): DPMS enabled
[  1992.490] (==) intel(0): Intel XvMC decoder enabled
[  1992.490] (II) intel(0): Set up textured video
[  1992.490] (II) intel(0): [XvMC] xvmc_vld driver initialized.
[  1992.490] (II) intel(0): direct rendering: DRI2 Enabled
[  1992.490] (==) intel(0): hotplug detection: "enabled"
[  1992.513] (--) RandR disabled
[  1992.529] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[  1992.529] (II) AIGLX: enabled GLX_INTEL_swap_event
[  1992.529] (II) AIGLX: enabled GLX_ARB_create_context
[  1992.529] (II) AIGLX: enabled GLX_ARB_create_context_profile
[  1992.529] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
[  1992.529] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
[  1992.529] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[  1992.529] (II) AIGLX: Loaded and initialized i965
[  1992.529] (II) GLX: Initialized DRI2 GL provider for screen 0
[  1992.529] (II) intel(0): Setting screen physical size to 338 x 211
[  1992.565] (II) config/udev: Adding drm device (/dev/dri/card0)
[  2000.522] (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/event15)
[  2000.522] (**) Logitech USB Optical Mouse: Applying InputClass "evdev pointer catchall"
[  2000.522] (II) LoadModule: "evdev"
[  2000.523] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[  2000.523] (II) Module evdev: vendor="X.Org Foundation"
[  2000.523] 	compiled for 1.13.0, module version = 2.7.3
[  2000.523] 	Module class: X.Org XInput Driver
[  2000.523] 	ABI class: X.Org XInput driver, version 18.0
[  2000.523] (II) Using input driver 'evdev' for 'Logitech USB Optical Mouse'
[  2000.523] (**) Logitech USB Optical Mouse: always reports core events
[  2000.523] (**) evdev: Logitech USB Optical Mouse: Device: "/dev/input/event15"
[  2000.526] (--) evdev: Logitech USB Optical Mouse: Vendor 0x46d Product 0xc05f
[  2000.526] (--) evdev: Logitech USB Optical Mouse: Found 3 mouse buttons
[  2000.526] (--) evdev: Logitech USB Optical Mouse: Found scroll wheel(s)
[  2000.526] (--) evdev: Logitech USB Optical Mouse: Found relative axes
[  2000.526] (--) evdev: Logitech USB Optical Mouse: Found x and y relative axes
[  2000.526] (II) evdev: Logitech USB Optical Mouse: Configuring as mouse
[  2000.526] (II) evdev: Logitech USB Optical Mouse: Adding scrollwheel support
[  2000.526] (**) evdev: Logitech USB Optical Mouse: YAxisMapping: buttons 4 and 5
[  2000.526] (**) evdev: Logitech USB Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[  2000.526] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input21/event15"
[  2000.526] (II) XINPUT: Adding extended input device "Logitech USB Optical Mouse" (type: MOUSE, id 6)
[  2000.527] (II) evdev: Logitech USB Optical Mouse: initialized for relative axes.
[  2000.527] (**) Logitech USB Optical Mouse: (accel) keeping acceleration scheme 1
[  2000.527] (**) Logitech USB Optical Mouse: (accel) acceleration profile 0
[  2000.527] (**) Logitech USB Optical Mouse: (accel) acceleration factor: 2.000
[  2000.527] (**) Logitech USB Optical Mouse: (accel) acceleration threshold: 4
[  2000.528] (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/mouse1)
[  2000.528] (II) No input driver specified, ignoring this device.
[  2000.528] (II) This device may have been added with another device file.
[  2000.552] (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/mouse1)
[  2000.552] (II) No input driver specified, ignoring this device.
[  2000.552] (II) This device may have been added with another device file.
[  2000.553] (II) config/udev: removing device Logitech USB Optical Mouse
[  2000.556] (II) evdev: Logitech USB Optical Mouse: Close
[  2000.556] (II) UnloadModule: "evdev"
[  2000.557] (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/event15)
[  2000.557] (**) Logitech USB Optical Mouse: Applying InputClass "evdev pointer catchall"
[  2000.557] (II) Using input driver 'evdev' for 'Logitech USB Optical Mouse'
[  2000.557] (**) Logitech USB Optical Mouse: always reports core events
[  2000.557] (**) evdev: Logitech USB Optical Mouse: Device: "/dev/input/event15"
[  2000.557] (--) evdev: Logitech USB Optical Mouse: Vendor 0x46d Product 0xc05f
[  2000.557] (--) evdev: Logitech USB Optical Mouse: Found 3 mouse buttons
[  2000.557] (--) evdev: Logitech USB Optical Mouse: Found scroll wheel(s)
[  2000.557] (--) evdev: Logitech USB Optical Mouse: Found relative axes
[  2000.557] (--) evdev: Logitech USB Optical Mouse: Found x and y relative axes
[  2000.557] (II) evdev: Logitech USB Optical Mouse: Configuring as mouse
[  2000.557] (II) evdev: Logitech USB Optical Mouse: Adding scrollwheel support
[  2000.557] (**) evdev: Logitech USB Optical Mouse: YAxisMapping: buttons 4 and 5
[  2000.557] (**) evdev: Logitech USB Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[  2000.557] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input21/event15"
[  2000.557] (II) XINPUT: Adding extended input device "Logitech USB Optical Mouse" (type: MOUSE, id 6)
[  2000.557] (II) evdev: Logitech USB Optical Mouse: initialized for relative axes.
[  2000.557] (**) Logitech USB Optical Mouse: (accel) keeping acceleration scheme 1
[  2000.557] (**) Logitech USB Optical Mouse: (accel) acceleration profile 0
[  2000.557] (**) Logitech USB Optical Mouse: (accel) acceleration factor: 2.000
[  2000.557] (**) Logitech USB Optical Mouse: (accel) acceleration threshold: 4
[  2006.197] (II) config/udev: removing device Logitech USB Optical Mouse
[  2006.199] (II) evdev: Logitech USB Optical Mouse: Close
[  2006.200] (II) UnloadModule: "evdev"
[  2486.919] Server terminated successfully (0). Closing log file.

Deleted

Есть подозрение, что это косячит системд-удев-что-то-из-этой-серии.

Есть подозрение, что нужно попробовать запуститься не в chroot.

CYB3R ★★★★★
()
Ответ на: комментарий от CYB3R

завтра буду пробовать. Но все равно пока мне не ясно, почему происходит такая фигня.

Deleted
()
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.