I'm using triggerhappy in combination with systemd and a bash based system (no busybox). The systemd unit fails with this error message: "Error opening '/dev/input/event*': No such file or directory" The systemd unit has the start command defined as follows: ExecStart=/usr/sbin/thd --triggers /etc/triggerhappy/triggers.d --socket /var/run/thd.socket --user nobody /dev/input/event* If you run the command directly from bash it is working, I guess because bash is already expanding the wildcard. thd started supporting Wildcards in Version 0.5.0. with the option "--deviceglob" [1] before it proposed a wrapper script for the systemd unit added in this commit: [2] I don't know if the unit currently supplied with buildroot ever worked, but not with the thd version currently used. Since 0.5.0 the systemd unit should be like this: [3] So I could supply a patch but I'm not sure what is preferable. Fix the systemd unit supplied with the current version included in buildroot 2017.02.1. Or bump the version and provide the new style unit? Regards, Michael [1]https://github.com/wertarbyte/triggerhappy/commit/c9b6556bd45529eebfabcad3b843beb185aca5fc [2]https://github.com/wertarbyte/triggerhappy/commit/47a9e4e842676c48d056aefe623af1d29a9b0e5e [3]https://github.com/wertarbyte/triggerhappy/commit/06720d2305bedc7fcef8b18919f5c73a73164f85
(In reply to Michael Heinemann from comment #0) Thanks for your detailed report! I'd say bump the version and use the new unit is most likely the right option here.
Created attachment 7046 [details] patch to bump version to 0.5.0 Proposed fix to bump version and fix systemd unit
Thanks, I've applied your patch as of https://git.buildroot.org/buildroot/commit/?id=3e23b1c9bb74bf1edf3f71d5c1e6e5e364e0821a.
Great. Thank you!