Re: [PATCH] Implement ext2 incompat feature 64-bit

2023-08-19 Thread Vladimir 'phcoder' Serbinenko
Le mer. 16 août 2023, 12:50, Stuart Henderson a écrit : > On 2023/08/15 18:16, Vladimir 'phcoder' Serbinenko wrote: > > Did I do something wrong and should send it to another list, CC someone > or > > did I do something stupid? 64-bit incompat feature is enabled on new >

Re: [PATCH] Implement ext2 incompat feature 64-bit

2023-08-15 Thread Vladimir 'phcoder' Serbinenko
Did I do something wrong and should send it to another list, CC someone or did I do something stupid? 64-bit incompat feature is enabled on new ext4's by default, at least on Ubuntu Le lun. 3 juil. 2023, 02:49, Vladimir 'phcoder' Serbinenko < phco...@gmail.com> a écrit : > Hello, all

Re: [PATCH] Support PS2 keyboard on chrromebook

2023-08-13 Thread Vladimir 'phcoder' Serbinenko
CC'ed back the mailing list. Tested your patch. It works on my Chromebook. Le sam. 12 août 2023, 08:50, Miod Vallat a écrit : > > > Have you checked that the Chromebook EC 8042 emulation returns > 0xab/0x83 > > > to the 0xf2 command? > > > > > I've checked that it returns 0xab/0x83. > > Good! >

Re: ietp cleanup

2023-07-20 Thread Vladimir 'phcoder' Serbinenko
Looks good toi me Le jeu. 20 juil. 2023, 20:58, joshua stein a écrit : > bmercer@ noticed there was no newline printed after a successful > attachment. I did some other minor cleanup removing duplicate > dv_xname printing during attachment and wrapping at 80 chars. > > ok? > > > Index:

Re: [PATCH] Support PS2 keyboard on chrromebook

2023-07-10 Thread Vladimir 'phcoder' Serbinenko
Ping? Le lun. 3 juil. 2023, 02:59, Vladimir 'phcoder' Serbinenko < phco...@gmail.com> a écrit : > On, at least, some Chromebook PS/2 protocol is implemented by EC rather > than a real PS/2 controller. It works fine except for 2 things: > * Unusual layout like multimedia ke

Re: [PATCH] Implement ext2 incompat feature 64-bit

2023-07-10 Thread Vladimir 'phcoder' Serbinenko
Ping? Le lun. 3 juil. 2023, 02:49, Vladimir 'phcoder' Serbinenko < phco...@gmail.com> a écrit : > Hello, all attached patch implements feature 64-bit for ext2. This was > enabled implicitly on my Ubuntu and probably on many other systems. Since > it's an incompat feature lack

Re: [PATCH V3] Driver for Elantech I2C touchpad

2023-07-08 Thread Vladimir 'phcoder' Serbinenko
> > > +.Sh AUTHORS > > +The > > +.Nm > > +driver was written by > > +.An vladimir serbineko Aq Mt phco...@gmail.com . > > This should be serbinenko not serbineko? > Yes. Serbinenko is the correct spelling. Sorry for typo.

[PATCH V4] Driver for Elantech I2C touchpad

2023-07-07 Thread Vladimir 'phcoder' Serbinenko
Changes: * Removed couple of dead functions Le jeu. 6 juil. 2023, 18:44, Vladimir 'phcoder' Serbinenko < phco...@gmail.com> a écrit : > This patch adds support for I2C Elantech touchpad as used on Chromebooks > and some other laptops. Tested on Elemi Chromebook. Based on FreeBSD i

[PATCH V3] Driver for Elantech I2C touchpad

2023-07-06 Thread Vladimir 'phcoder' Serbinenko
This patch adds support for I2C Elantech touchpad as used on Chromebooks and some other laptops. Tested on Elemi Chromebook. Based on FreeBSD ietp driver and OpenBSD ihidev.c driver. Ietp uses HID endpoint descriptor and few commands from HID but is largely incompatible as reports are different

Re: [PATCH] Elantech touchpad I2C deiver

2023-07-05 Thread Vladimir 'phcoder' Serbinenko
Le mer. 5 juil. 2023, 18:02, joshua stein a écrit : > > few commands from HID but is largely incompatible as reports are > different > > and report descriptors are missing. > > Some minor comments inline. It also needs a man page. > Fixed and added manpage. > > > > > > +/* $OpenBSD: elantp.c,v

[PATCH] Elantech touchpad I2C deiver

2023-07-05 Thread Vladimir 'phcoder' Serbinenko
This patch adds support for I2C Elantech touchpad as used on Chromebooks and some other laptops. Tested on Elemi Chromebook. Based on FreeBSD ietp driver and OpenBSD ihidev.c driver. Ietp uses HID endpoint descriptor and few commands from HID but is largely incompatible as reports are different

[PATCH] Support PS2 keyboard on chrromebook

2023-07-02 Thread Vladimir 'phcoder' Serbinenko
On, at least, some Chromebook PS/2 protocol is implemented by EC rather than a real PS/2 controller. It works fine except for 2 things: * Unusual layout like multimedia keys instead of F* * Reset command returns garbage (usually last key) This patch attempts to handle later as it stops keyboard

[PATCH] Implement ext2 incompat feature 64-bit

2023-07-02 Thread Vladimir 'phcoder' Serbinenko
Hello, all attached patch implements feature 64-bit for ext2. This was enabled implicitly on my Ubuntu and probably on many other systems. Since it's an incompat feature lack of its support prevented the mount altogether. With this patch I was able to load install sets from my Ubuntu partition.