We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
Using libudev for matching devices in /dev/input, I see the matching using regular expressions doesn't seem to act correctly.
For example:
struct udev_enumerate *udev_enum = udev_enumerate_new(m_udev); udev_enumerate_add_match_subsystem(udev_enum, "input"); udev_enumerate_add_match_sysname(udev_enum, "event[0-9][0-9]*"); udev_enumerate_scan_devices(udev_enum);
This code returns no matches despite event0 up to event3 exists. On standard udev (from systemd), it works fine, under ubuntu 18.04.
But when using buildroot 2018.08 (which uses eudev 3.2.5), this stops working.
Looking at https://linux.die.net/man/8/udev, those should work.
The text was updated successfully, but these errors were encountered:
Can you please confirm if that is still the case with the latest release?
Sorry, something went wrong.
No branches or pull requests
Hi,
Using libudev for matching devices in /dev/input, I see the matching using regular expressions doesn't seem to act correctly.
For example:
This code returns no matches despite event0 up to event3 exists.
On standard udev (from systemd), it works fine, under ubuntu 18.04.
But when using buildroot 2018.08 (which uses eudev 3.2.5), this stops working.
Looking at https://linux.die.net/man/8/udev, those should work.
The text was updated successfully, but these errors were encountered: