On Sun, Apr 20, 2014 at 04:34:28PM +0200, Zoran Kolic wrote:
> The same configuration worked without error on the console. It works now,
> but console is flooded. Any more data needed?
It looks like your kernel and X are out of sync.
Are you sure you've upgraded X?
The message "Mouse0: bad wsmouse event type=18" cannot happen with
the xf86-input-ws driver from -current xenocara:
case WSCONS_EVENT_SYNC:
DBG(4, ErrorF("Sync\n"));
return TRUE;
default:
xf86IDrvMsg(pInfo, X_WARNING,
"bad wsmouse event type=%d\n", event.type);
continue;
(above code from /usr/xenocara/driver/xf86-input-ws/src/ws.c)
/usr/include/dev/wscons/wsconsio.h:#define WSCONS_EVENT_SYNC
18
Control flow should fall into 'case WSCONS_EVENT_SYNC:' but in
your case it hits the 'default:' case which means your xf86-input-ws
driver is out of date and doesn't handle WSCONS_EVENT_SYNC events.