> On 26. Jun 2025, at 04:28, Gleb Smirnoff <[email protected]> wrote: > > On Thu, Jun 26, 2025 at 12:24:22AM +0200, Michael Tuexen wrote: > M> > And it worked for me on the stabweek revision in my VM. > M> Strange. > M> > M> Could you change in /etc/rc.d/devfs > M> > M> o*) for device in ${devicelist}; do > M> if [ -c ${device} ]; then > M> chown ${parameter} ${device} > M> fi > M> done > M> ;; > M> > M> to > M> > M> o*) for device in ${devicelist}; do > M> printf "own chown %s %s\n" ${parameter} ${device} > M> if [ -c ${device} ]; then > M> printf "performing" > M> chown ${parameter} ${device} > M> fi > M> done > M> ;; > M> > M> and run > M> service devfs start > M> and send the output of it? > > I added '\n' to the second printf. I get: > > root@bobrik:~:|>service devfs start > own chown root:network bpf > performing > own chown root:network bpf0 > performing > root@bobrik:~:|> Could you double check that your /etc/rc.subr contains the changes of * https://cgit.FreeBSD.org/src/commit/?id=4deb9760a9d84d5861ee45162ffebe83f13503b8 <https://cgit.freebsd.org/src/commit/?id=4deb9760a9d84d5861ee45162ffebe83f13503b8> * https://cgit.FreeBSD.org/src/commit/?id=7faddeb395b7976b44393db24f48ec47040eff07 <https://cgit.freebsd.org/src/commit/?id=7faddeb395b7976b44393db24f48ec47040eff07>
Best regards Michael > > -- > Gleb Smirnoff
