Old USRP inband code

I’m trying to grab a copy of the GNU Radio code through git which still
has
the old USRP inband code. I noticed this commit from Jonathan in my
search:

Author: jcorgan jcorgan@221aa14e-8319-0410-a670-987f0aec2ac5
Date: Thu Jul 9 02:55:51 2009 +0000

Merged r11377:11390 from jcorgan/usrp-headers in to trunk.

* Removed usrp-inband code from tree (put into limbo directory.)
  This code has become unmaintained and has started to suffer
  from bitrot.  A checkpoint tag has been made for anyone still
  needing to use it:

http://gnuradio.org/svn/gnuradio/tags/checkpoints/trunk-20090708-pre-usrp-reorg


How I do get the tags with the current git structure? I’m struggling a
bit
with GIT :stuck_out_tongue: Thanks a bunch.

  • George

On Thu, May 13, 2010 at 4:25 PM, George N. [email protected] wrote:

  from bitrot.  A checkpoint tag has been made for anyone still
  needing to use it:

http://gnuradio.org/svn/gnuradio/tags/checkpoints/trunk-20090708-pre-usrp-reorg


How I do get the tags with the current git structure? I’m struggling a bit
with GIT :stuck_out_tongue: Thanks a bunch.

The can create a branch and reset to the state before the inband code
was moved to limbo. Lets call it inband.

git checkout -b inband
git reset --hard eefb51c0c0fac68d

Thomas