https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211967
--- Comment #11 from k...@denninger.net --- (In reply to nc from comment #10) >From /usr/src... svn log -v -r xxxxxxx (will tell you which file(s) got changed, in this case just one file in the USB driver set) Then, after figuring out whether you have interdependencies and can safely roll back just one file or you must do the entire tree: svn update -r xxxxxx file-that-got-changed (if just one file as is the case here, and no other dependencies on later commits; this can be dangerous but in this case it's ok) or cd /usr/src (or /usr/src/sys in this case, since this is kernel-specific) svn update -r xxxxxx . (will roll the entire tree from that point downward back to the specified revision) and then of course "make buildkernel;make installkernel" from /usr/src. -- You are receiving this mail because: You are on the CC list for the bug. _______________________________________________ freebsd-amd64@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-amd64 To unsubscribe, send any mail to "freebsd-amd64-unsubscr...@freebsd.org"