Good evening,
Was on FreeBSD 10.0-x64. Saw that 10.1 was released.
So I have a batch file that somewhat automates getting new sources. It looks like:
When I manually peruse the SVN repo with a web browser, I see version 274417. But when the above gets done, it tells me I am at version 264538 and this revision increments every few minutes when another commit is made.
I am concerned that I'm really pulling sources from HEAD instead of RELEASE, even though release is clearly my target.
This is my first upgrade with FreeBSD. So if this behavior is normal for new releases, I would like to know that. Previously, when I would check for upgrades to FreeBSD 10.0. Calls to SVN to upgrade my source showed that the source code at a static version, and not incrementing.
Can someone please explain what I am seeing and why? I am not challenging nor complaining, I simply want to understand what is happening, and if that is normal.
Thank you!
Sincerely and respectfully,
Dave
Was on FreeBSD 10.0-x64. Saw that 10.1 was released.
So I have a batch file that somewhat automates getting new sources. It looks like:
Code:
#!/bin/sh
#
#
# This shell script nukes the current /usr/src dirtree, and fetches a new
# copy of the system sources, and installs it to /usr/src
#
#
echo
echo Removing existing /usr/src/ dirtree......
echo
sudo rm -rf /usr/src
echo
sudo svn checkout https://svn0.us-west.freebsd.org/base/release/10.1.0 /usr/src
echo
exit
When I manually peruse the SVN repo with a web browser, I see version 274417. But when the above gets done, it tells me I am at version 264538 and this revision increments every few minutes when another commit is made.
I am concerned that I'm really pulling sources from HEAD instead of RELEASE, even though release is clearly my target.
This is my first upgrade with FreeBSD. So if this behavior is normal for new releases, I would like to know that. Previously, when I would check for upgrades to FreeBSD 10.0. Calls to SVN to upgrade my source showed that the source code at a static version, and not incrementing.
Can someone please explain what I am seeing and why? I am not challenging nor complaining, I simply want to understand what is happening, and if that is normal.
Thank you!
Sincerely and respectfully,
Dave