Hello-
Recently I had the experience of using svn and frankly I need to understand how svn works compared to cvsup.
When I compile kernels using cvsup I use a custom script that calls upon the various sup files. In this case, I used the stable-supfile to retrieve the desired sources. When the stable-supfile uses tag=RELENG9, I end up with the uname -a output of:
However when I use svn as follows:
I end up with this:
Why do I get STABLE when using cvsup and get RELEASE when using svn with the 'same' tag?
When I attempt to:
I end up with FreeBSD 9.1-PRERELEASE! (Sorry I didn't capture the uname -a output at the time).
Why?!?
I actually want to retrieve the 9.0 stable version and not the 9.0 release version using svn. And certainly not the 9.1 prerelease version!
~Doug
Recently I had the experience of using svn and frankly I need to understand how svn works compared to cvsup.
When I compile kernels using cvsup I use a custom script that calls upon the various sup files. In this case, I used the stable-supfile to retrieve the desired sources. When the stable-supfile uses tag=RELENG9, I end up with the uname -a output of:
Code:
[11]root@test:/root # uname -a
FreeBSD test.dawnsign.com 9.0-STABLE FreeBSD 9.0-STABLE #6: Tue Jun 12 16:51:10 PDT 2012
root@test.dawnsign.com:/usr/obj/usr/src/sys/GENERIC i386
[11]root@test:/root #
However when I use svn as follows:
Code:
# svn checkout svn://svn0.us-west.FreeBSD.org/base/releng/9.0 /usr/src
I end up with this:
Code:
aries# uname -a
FreeBSD aries.dawnsign.com 9.0-RELEASE-p4 FreeBSD 9.0-RELEASE-p4 #0 r240684: Wed Sep 19 11:28:26 PDT 2012
root@aries.dawnsign.com:/usr/obj/usr/src/sys/ARIES i386
aries#
Why do I get STABLE when using cvsup and get RELEASE when using svn with the 'same' tag?
When I attempt to:
Code:
# svn checkout svn://svn0.us-west.FreeBSD.org/base/stable/9 /usr/src
I end up with FreeBSD 9.1-PRERELEASE! (Sorry I didn't capture the uname -a output at the time).
Why?!?
I actually want to retrieve the 9.0 stable version and not the 9.0 release version using svn. And certainly not the 9.1 prerelease version!
~Doug