Some udev rules files have changed to .rules.in templates for configure [1] sed -i -e 's/GROUP="dialout"/GROUP="uucp"/' rules/*.rules needs to be adjusted to include those. [1] https://github.com/systemd/systemd/commit/5a664ca10f38dbf66c07961707dafed66382caec
Broke my serial terminal access - can we get a quick ebuild fix?
https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc7faaaefdb480c904faa827ee2917a3e3472c4e commit cc7faaaefdb480c904faa827ee2917a3e3472c4e Author: Mike Gilbert <floppym@gentoo.org> Date: Sun Aug 13 19:07:04 2017 -0400 sys-fs/udev: replace uucp sed with a patch Bug: https://bugs.gentoo.org/625720 Package-Manager: Portage-2.3.6_p34, Repoman-2.3.3_p12 .../udev}/files/234-uucp-group.patch | 0 sys-fs/udev/{udev-234.ebuild => udev-234-r1.ebuild} | 19 ++++--------------- sys-fs/udev/udev-9999.ebuild | 21 +++++---------------- 3 files changed, 9 insertions(+), 31 deletions(-) https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a1a0a2241cc8e2874ff3d85333136fc491b06ec commit 3a1a0a2241cc8e2874ff3d85333136fc491b06ec Author: Mike Gilbert <floppym@gentoo.org> Date: Sun Aug 13 19:02:17 2017 -0400 sys-apps/systemd: replace uucp sed with a patch Bug: https://bugs.gentoo.org/625720 Package-Manager: Portage-2.3.6_p34, Repoman-2.3.3_p12 sys-apps/systemd/files/234-uucp-group.patch | 11 +++++++++++ sys-apps/systemd/systemd-234-r2.ebuild | 4 +--- sys-apps/systemd/systemd-9999.ebuild | 4 +--- 3 files changed, 13 insertions(+), 6 deletions(-)
Heh, I tried a default rules patch that apparently gets overridden anyway; a manual workaround that works is the usual /etc/udev/rules.d override: # cat /etc/udev/rules.d/50-usb-serial.rules KERNEL=="ttyUSB[0-9]*",MODE="0660",GROUP="uucp" KERNEL=="ttyACM[0-9]*",MODE="0660",GROUP="uucp" Thanks for the quick fix update...