Hello,
I'm using SVN to update /usr/src and /usr/ports.
I have a custom kernel with PF and ALTQ, so I'm compiling my kernel and world from source.
I was wondering on two things about updating FreeBSD:
The First one:
When should I update FreeBSD, I was trying to lookup a method to check /usr/src which files were updated. My Kernel is at 290466 and /usr/src is at revision 291012.
I tried:
But it does not work...
I found this somewhat useful:
In this I can lookup SA-s and other modifications committed to the source, but it would be better if I could see an updated file list...
Any ideas? I'm not a subversion guru, and I did not find any help in this topic.
The Second:
I usually do a
So do I need to take the time and cpu and create my own catalog, or the remote catalog should be in sync with the HEAD of ports from svn? I think
Thanks!
I'm using SVN to update /usr/src and /usr/ports.
I have a custom kernel with PF and ALTQ, so I'm compiling my kernel and world from source.
I was wondering on two things about updating FreeBSD:
The First one:
When should I update FreeBSD, I was trying to lookup a method to check /usr/src which files were updated. My Kernel is at 290466 and /usr/src is at revision 291012.
I tried:
Code:
svn diff --summarize -r 290466:291012 svn://svn.freebsd.org/base/releng/10.2
I found this somewhat useful:
Code:
svn log /usr/src |more
Any ideas? I'm not a subversion guru, and I did not find any help in this topic.
The Second:
I usually do a
make index in /usr/ports after an svn update, but I was thinking if make fetchindex is just as good if I just updated to ports HEAD?So do I need to take the time and cpu and create my own catalog, or the remote catalog should be in sync with the HEAD of ports from svn? I think
fetchindex should be ok.Thanks!