Hello,
I am trying to patch UCSBJello files to my (already installed) gnuradio
version. I installed the latest version of gnuradio a couple of days ago
using the build-gnuradio script.
The UCSBJello project page in CGRAN (https://cgran.org/wiki/UCSBJello)
tells to download the tarball, patch the files and then run the build
gnuradio command. Since, I have gnuradio running in my laptop already,
how
can I patch the UCSB Jello files to my existing gnuradio version? I can
download each file of UCSB Jello one-by-one and see if that works.
However,
that will take a long time and I wonder if there is any shortcut.
I am sorry if this sounds a very novice question. Any feedback will be
very
appreciated.
Thanks,
Nazmul
–
Muhammad Nazmul I.
Graduate Student
Electrical & Computer Engineering
Wireless Information & Networking Laboratory
Rutgers, USA.
On Thu, Feb 21, 2013 at 4:34 PM, Nazmul I.
[email protected] wrote:
each file of UCSB Jello one-by-one and see if that works. However, that will
take a long time and I wonder if there is any shortcut.
I am sorry if this sounds a very novice question. Any feedback will be very
appreciated.
Thanks,
Nazmul
Nazmul,
I don’t think there’s really a short-cut. I’m not sure exactly what
you mean by downloading each file, but then again, I’m not familiar
with that UCSB project.
I would just download the project, extract it, then try to build by
hand and see where the compiler tells you there are problems. If this
was written against another version of GNU Radio, there are probably
going to be some API changes between the versions that affect you.
Just work through these until the compiler is happy.
Tom
Thanks a lot, Tom.
I am trying to follow the instructions of
https://www.cgran.org/wiki/UCSBJello line-by-line. However, I am facing
the
following issues in step 1 and step 2. Any feedback will be appreciated.
Step 1: Download gnuradio-3.2.2 tarball (
http://gnuradio.org/redmine/wiki/gnuradio/Release32Branch)
The mentioned website does not exist any more. Which command shall I
use?
Shall I download the latest weekly development code from
http://gnuradio.org/files/builds/gnuradio-current.tar.gz?
*Step 2: Patch Jello files to gnuradio *
It means that I will have to download the jello files separately and
then
copy to the GNUradio folder, right? I tried the following wget command
to
recursively download all files of the jello folder (
https://www.cgran.org/browser/projects/ucsb_jello).
wget -r --no-parent --reject “index.html*” --no-check-certificate
https://www.cgran.org/browser/projects/ucsb_jello
However, it is not downloading a lot of files correctly, i.e., some .cpp
and .py files are getting downloaded in corrupt version.
I have always installed gnuradio through Marcus’s build-gnuradio code.
Therefore, I am sorry if these tarball related questions are very
novice.
Thanks,
Nazmul
On Fri, Feb 22, 2013 at 9:54 AM, Tom R. [email protected] wrote:
to download the tarball, patch the files and then run the build gnuradio
I would just download the project, extract it, then try to build by
hand and see where the compiler tells you there are problems. If this
was written against another version of GNU Radio, there are probably
going to be some API changes between the versions that affect you.
Just work through these until the compiler is happy.
Tom
–
Muhammad Nazmul I.
Graduate Student
Electrical & Computer Engineering
Wireless Information & Networking Laboratory
Rutgers, USA.
On Wed, Feb 27, 2013 at 4:10 PM, Nazmul I.
[email protected] wrote:
The mentioned website does not exist any more. Which command shall I use?
Shall I download the latest weekly development code from
http://gnuradio.org/files/builds/gnuradio-current.tar.gz?
If you’re trying to get it working with the latest code, then yes,
ignore this step and install based on either the latest master from
git, the latest 3.6.4 release, or that tarball you linked to (although
that’s ‘current’ as of about 3 months ago; it’s a long story but a new
one should be up soon).
My recommendation would be to go with the latest release so you know
that your patches are tied to a specific stable version of GNU Radio.
You can find all of the releases here:
http://gnuradio.org/releases/gnuradio/
However, it is not downloading a lot of files correctly, i.e., some .cpp and
.py files are getting downloaded in corrupt version.
That sounds like a problem on the hosting side. Can you manually
download the same files without them being corrupted? wget shouldn’t
be getting in the way of anything.
Tom