Re: [Discuss-gnuradio] Problem in installing GNURadio on zedboard

2016-03-31 Thread Marcus Müller
Dear Chandan,

well, there's a million reasons why something might not boot; I'm afraid
you'll have to be a little more verbose on what happens, and where the
boot process stops, and what you've tried.

Best regards,
Marcus

PS: There's also ladies on this list ;)

On 31.03.2016 21:51, chandan kumar wrote:
> sir,
>
> I am trying to install GNURadio on zed board but I getting problem. I
> followed the steps as provided on the link
> https://gnuradio.org/redmine/projects/gnuradio/wiki/Zynq and also
> downloaded the required files form same. But board is not able to boot.
>
>
> ___
> Discuss-gnuradio mailing list
> Discuss-gnuradio@gnu.org
> https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


[Discuss-gnuradio] Problem in installing GNURadio on zedboard

2016-03-31 Thread chandan kumar
sir,

I am trying to install GNURadio on zed board but I getting problem. I
followed the steps as provided on the link
https://gnuradio.org/redmine/projects/gnuradio/wiki/Zynq and also
downloaded the required files form same. But board is not able to boot.
___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] problem in installing gnuradio

2011-11-21 Thread Marcus D. Leech
Download it... chmod 755 , then ./ to run it. That's 
general knowledge more than it is USRP/gnuradio specific. I suggest 
that you read up on BASH and using a command prompt...




Which is talked about here:

http://gnuradio.org/redmine/projects/gnuradio/wiki/InstallingGR


--
Marcus Leech
Principal Investigator
Shirleys Bay Radio Astronomy Consortium
http://www.sbrac.org

___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] problem in installing gnuradio

2011-11-21 Thread Nowlan, Sean
Download it... chmod 755 , then ./ to run it. That's general 
knowledge more than it is USRP/gnuradio specific. I suggest that you read up on 
BASH and using a command prompt...

From: shantharam balasubramanian [mailto:shantharam...@gmail.com]
Sent: Monday, November 21, 2011 4:48 PM
To: Nowlan, Sean
Subject: Re: [Discuss-gnuradio] problem in installing gnuradio

Hi Sean,

I am very new to this process of running the scripts and such things. Can you 
tell me how to run the script which you and marcus have posted in this email?


thank you
___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] problem in installing gnuradio

2011-11-21 Thread Marcus D. Leech

On 21/11/2011 10:07 AM, S Haque wrote:


I have a comment and a question about this advice, but probably I am 
parsing too much as a new user.


I recently tried to "sync" my development workstations (in my lab): 
Gnu Radio 3.5.0rc0 and UHD 3.3.1 which is installed and working very 
well on my principal development machine.


A few days later on another system totally different than my own, I 
tried to install new  development environments and initially chose NOT 
to use Marcus' build script in full, but used its "gitfetch" function, 
followed by:


(cd to UHD directory)

(git checkout tag release_003_003_001)

(build-gnuradio with options to build only the UHD)

And then,

(cd to GNU radio directory)

(git checkout tag 3.5.0rc0)

(build-gnuradio with options to build only the GNU Radio)

All of these were on a updated Ubuntu 10.04 LTS. And while the UHD 
3.3.1 system worked initially (uhd_find_device worked great), it broke 
immediately after gnu-radio was installed .. with a segmentation fault 
as the UHD installed now showed UHD_003.004.000 instead of 
UHD_003_003_001.  This IMHO is not what I expected, it should be 
possible to roll back (UHD, GnuRadio) to whatever version we wish to 
have, to test out older scripts..


Based upon a suggestion from a colleague, I later ran the 
build-gnuradio script in full and all is fine for now, albeit two 
different foundation framework.


3.5.0rc0 + UHD 3.3.1

3.5.0rc0 + UHD 3.4.0

But, may I ask the developers to explain the reasoning for this 
behavior of an install script that was run on two similar machines 
separated by only four days? What can we do, explicitly, to choose 
particular  distributions of Gnuradio and UHD, so we don't 
end up having several versions of the codebase which may have 
different classes of bugs. What is your recommended strategy for 
regression testing, or synching the various development environments ?


Regards

s




The "build" parts of build-gnuradio assume that the source directories 
are a totally-virgin "clone", so they don't bother doing a
  "make clean" before doing the rest of it, which probably explains why 
you ended up with 003_004_000 instead of the expected

  003_003_001.

But if you're going to go to the trouble of doing a "git checkout" by 
hand, then you can simply "cd" to the "build" directory, then

  do a:

make clean; make; sudo make install

Without the build-gnuradio script at all.
___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] problem in installing gnuradio

2011-11-21 Thread Marcus D. Leech

On 21/11/2011 10:07 AM, S Haque wrote:


I have a comment and a question about this advice, but probably I am 
parsing too much as a new user.


I recently tried to "sync" my development workstations (in my lab): 
Gnu Radio 3.5.0rc0 and UHD 3.3.1 which is installed and working very 
well on my principal development machine.


A few days later on another system totally different than my own, I 
tried to install new  development environments and initially chose NOT 
to use Marcus' build script in full, but used its "gitfetch" function, 
followed by:


(cd to UHD directory)

(git checkout tag release_003_003_001)

(build-gnuradio with options to build only the UHD)

And then,

(cd to GNU radio directory)

(git checkout tag 3.5.0rc0)

(build-gnuradio with options to build only the GNU Radio)

All of these were on a updated Ubuntu 10.04 LTS. And while the UHD 
3.3.1 system worked initially (uhd_find_device worked great), it broke 
immediately after gnu-radio was installed .. with a segmentation fault 
as the UHD installed now showed UHD_003.004.000 instead of 
UHD_003_003_001.  This IMHO is not what I expected, it should be 
possible to roll back (UHD, GnuRadio) to whatever version we wish to 
have, to test out older scripts..


Based upon a suggestion from a colleague, I later ran the 
build-gnuradio script in full and all is fine for now, albeit two 
different foundation framework.


3.5.0rc0 + UHD 3.3.1

3.5.0rc0 + UHD 3.4.0

But, may I ask the developers to explain the reasoning for this 
behavior of an install script that was run on two similar machines 
separated by only four days? What can we do, explicitly, to choose 
particular  distributions of Gnuradio and UHD, so we don't 
end up having several versions of the codebase which may have 
different classes of bugs. What is your recommended strategy for 
regression testing, or synching the various development environments ?


Regards

s


The build-gnuradio script explicitly was designed to fetch and build the 
current git master branches.  It has no facility for fetching any
  particular instance.  If you want that behaviour, then manual use GIT 
to fetch/checkout the instance you want, and build it by hand.


Or, alternatively, I'm happy to accept patches that allow you to build 
particular instances.


Keep in mind that UHD recently changed the API between gr-uhd, and UHD 
proper, which means that you can't mix-and-match older
  Gnu Radio with newer UHD, etc.  Josh talked about this in his 
announcement of a week or two ago.


I originally wrote build-gnuradio for *me* and some of my customers, to 
allow us to keep up with the current development code in
  a reasonably-easy-to-use way.  It works just fine for that, and most 
of the people who use it don't have any particular version that
  they're aiming for.  They just want to press the "go" button and have 
a working Gnu Radio + UHD installation an hour later.



___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] problem in installing gnuradio

2011-11-21 Thread S Haque
I have a comment and a question about this advice, but probably I am parsing
too much as a new user.

 

I recently tried to "sync" my development workstations (in my lab): Gnu
Radio 3.5.0rc0 and UHD 3.3.1 which is installed and working very well on my
principal development machine.

 

A few days later on another system totally different than my own, I tried to
install new  development environments and initially chose NOT to use Marcus'
build script in full, but used its "gitfetch" function, followed by:

 

(cd to UHD directory)

(git checkout tag release_003_003_001)

(build-gnuradio with options to build only the UHD)

 

And then,

 

(cd to GNU radio directory)

(git checkout tag 3.5.0rc0)

(build-gnuradio with options to build only the GNU Radio) 

 

All of these were on a updated Ubuntu 10.04 LTS. And while the UHD 3.3.1
system worked initially (uhd_find_device worked great), it broke immediately
after gnu-radio was installed .. with a segmentation fault as the UHD
installed now showed UHD_003.004.000 instead of UHD_003_003_001.  This IMHO
is not what I expected, it should be possible to roll back (UHD, GnuRadio)
to whatever version we wish to have, to test out older scripts.. 

 

Based upon a suggestion from a colleague, I later ran the build-gnuradio
script in full and all is fine for now, albeit two different foundation
framework.

 

3.5.0rc0 + UHD 3.3.1

3.5.0rc0 + UHD 3.4.0

 

But, may I ask the developers to explain the reasoning for this behavior of
an install script that was run on two similar machines separated by only
four days? What can we do, explicitly, to choose particular 
distributions of Gnuradio and UHD, so we don't end up having several
versions of the codebase which may have different classes of bugs. What is
your recommended strategy for regression testing, or synching the various
development environments ?

 

Regards

 

s

 

From: Nowlan, Sean [mailto:sean.now...@gtri.gatech.edu] 
Sent: Monday, November 21, 2011 9:56 AM
To: Marcus D. Leech; shantharam balasubramanian
Cc: discuss-gnuradio@gnu.org
Subject: Re: [Discuss-gnuradio] problem in installing gnuradio

 

Hi Shantharam,

 

Your e-mail seems to indicate that you built Gnuradio before building UHD.
UHD needs to be built before Gnuradio because the Gnuradio package "gr-uhd"
depends on it. Try re-running Marcus' script:

 

http://www.sbrac.org/files/build-gnuradio

 

Sean

 

From: discuss-gnuradio-bounces+sean.nowlan=gtri.gatech@gnu.org
[mailto:discuss-gnuradio-bounces+sean.nowlan=gtri.gatech@gnu.org] On
Behalf Of Marcus D. Leech
Sent: Sunday, November 20, 2011 10:27 PM
To: shantharam balasubramanian
Cc: discuss-gnuradio@gnu.org
Subject: Re: [Discuss-gnuradio] problem in installing gnuradio

 

I have actually mentioned that error in the first mail itself. 

 

I have mentioned that it gave me the error,

 

ImportError: cannot import name uhd

 

It wasn't clear in your second e-mail that your errors were the same.



 

 

What is your PYTHONPATH set to?

And also, I will, once again, encourage you to use:

http://www.sbrac.org/files/build-gnuradio

Which takes care of installing prerequisites, downloading and building UHD
and Gnu Radio, doing the necessary post-install tasks,
  and also figuring out what your PYTHONPATH should be, and telling you.



-- 
Marcus Leech
Principal Investigator
Shirleys Bay Radio Astronomy Consortium
http://www.sbrac.org
___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] problem in installing gnuradio

2011-11-21 Thread Nowlan, Sean
Hi Shantharam,

Your e-mail seems to indicate that you built Gnuradio before building UHD. UHD 
needs to be built before Gnuradio because the Gnuradio package "gr-uhd" depends 
on it. Try re-running Marcus' script:

http://www.sbrac.org/files/build-gnuradio

Sean

From: discuss-gnuradio-bounces+sean.nowlan=gtri.gatech@gnu.org 
[mailto:discuss-gnuradio-bounces+sean.nowlan=gtri.gatech@gnu.org] On Behalf 
Of Marcus D. Leech
Sent: Sunday, November 20, 2011 10:27 PM
To: shantharam balasubramanian
Cc: discuss-gnuradio@gnu.org
Subject: Re: [Discuss-gnuradio] problem in installing gnuradio

I have actually mentioned that error in the first mail itself.

I have mentioned that it gave me the error,

ImportError: cannot import name uhd

It wasn't clear in your second e-mail that your errors were the same.




What is your PYTHONPATH set to?

And also, I will, once again, encourage you to use:

http://www.sbrac.org/files/build-gnuradio

Which takes care of installing prerequisites, downloading and building UHD and 
Gnu Radio, doing the necessary post-install tasks,
  and also figuring out what your PYTHONPATH should be, and telling you.



--

Marcus Leech

Principal Investigator

Shirleys Bay Radio Astronomy Consortium

http://www.sbrac.org
___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] problem in installing gnuradio

2011-11-20 Thread Marcus D. Leech

I have actually mentioned that error in the first mail itself.

I have mentioned that it gave me the error,

ImportError: cannot import name uhd


It wasn't clear in your second e-mail that your errors were the same.





What is your PYTHONPATH set to?

And also, I will, once again, encourage you to use:

http://www.sbrac.org/files/build-gnuradio

Which takes care of installing prerequisites, downloading and building 
UHD and Gnu Radio, doing the necessary post-install tasks,

  and also figuring out what your PYTHONPATH should be, and telling you.

--
Marcus Leech
Principal Investigator
Shirleys Bay Radio Astronomy Consortium
http://www.sbrac.org

___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] problem in installing gnuradio

2011-11-20 Thread shantharam balasubramanian
I have actually mentioned that error in the first mail itself.

I have mentioned that it gave me the error,

ImportError: cannot import name uhd
___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] problem in installing gnuradio

2011-11-20 Thread Marcus D. Leech

Hi

I was installing the gnuradio in ubuntu 10.04, and the nodes have USRP2.

After installing gnuradio from the website link,

http://gnuradio.org/redmine/projects/gnuradio/wiki/UbuntuInstall

I then installed the UHD from the instructions given in the

http://cegt201.bradley.edu/projects/proj2011/sdr/update_files/install_gnuradio_uhd.pdf

which is given at steps 3 and 4. After doing these steps, I saw that 
there are two different folders gnruadio, and uhd. And then I tried to 
run the benchmark programs from the gr-digital folder inside gnuradio. 
But it didnt work.


Can you point out the mistakes I made here?


Thank you
"And then I tried to run the benchmark programs, but they didn't work". 
 Isn't a terribly-useful error report for anyone to do anything with.
  Did you receive error messages?  Did large, unfriendly, aliens 
descend rapidly from the now-torn-asunder ceiling and begin babbling loudly?
  Did a small, annoying, dog start urinating on your shoes?  Did the 
ghost of Marilyn Monroe start dancing on your keyboard?  Did you suddenly
  find yourself craving a beverage you hadn't tasted since you were a 
child?


What, exactly, *happened* when you ran the gr-digital examples, other 
than "they didn't work"???



--
Marcus Leech
Principal Investigator
Shirleys Bay Radio Astronomy Consortium
http://www.sbrac.org



___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] problem in installing gnuradio

2011-11-20 Thread shantharam balasubramanian
Hi

I was installing the gnuradio in ubuntu 10.04, and the nodes have USRP2.

After installing gnuradio from the website link,

http://gnuradio.org/redmine/projects/gnuradio/wiki/UbuntuInstall

I then installed the UHD from the instructions given in the

http://cegt201.bradley.edu/projects/proj2011/sdr/update_files/install_gnuradio_uhd.pdf

which is given at steps 3 and 4. After doing these steps, I saw that there
are two different folders gnruadio, and uhd. And then I tried to run the
benchmark programs from the gr-digital folder inside gnuradio. But it didnt
work.

Can you point out the mistakes I made here?


Thank you
___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] problem in installing gnuradio

2011-11-20 Thread Marcus D. Leech

On 11/20/2011 11:18 AM, Josh Blum wrote:


On 11/19/2011 08:36 PM, shantharam balasubramanian wrote:

Hi

I was trying to install the gnuradio in one of the wireless nodes available
in my college lab. I followed the steps given in the link;

http://gnuradio.org/redmine/projects/gnuradio/wiki/UbuntuInstall

I installed the image successfully, but when I tried to run some benchmark
programs in the folder gr-digital/examples/narrowband, I got the error
saying

ImportError: cannot import name uhd


Basically, install uhd from source or binary installer:
http://code.ettus.com/redmine/ettus/projects/uhd/wiki#Source-code
http://code.ettus.com/redmine/ettus/projects/uhd/wiki#Binary-downloads

And some instructions about configuring gnuradio w/ support:
http://code.ettus.com/redmine/ettus/projects/uhd/wiki#Gnuradio-UHD

-josh

___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio



Or (tired advertisement mode=ON) use:

http://www.sbrac.org/files/build-gnuradio

Which for Fedora and Ubuntu will take care of everything for you



--
Marcus Leech
Principal Investigator
Shirleys Bay Radio Astronomy Consortium
http://www.sbrac.org



___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] problem in installing gnuradio

2011-11-20 Thread Josh Blum


On 11/19/2011 08:36 PM, shantharam balasubramanian wrote:
> Hi
> 
> I was trying to install the gnuradio in one of the wireless nodes available
> in my college lab. I followed the steps given in the link;
> 
> http://gnuradio.org/redmine/projects/gnuradio/wiki/UbuntuInstall
> 
> I installed the image successfully, but when I tried to run some benchmark
> programs in the folder gr-digital/examples/narrowband, I got the error
> saying
> 
> ImportError: cannot import name uhd
> 

Basically, install uhd from source or binary installer:
http://code.ettus.com/redmine/ettus/projects/uhd/wiki#Source-code
http://code.ettus.com/redmine/ettus/projects/uhd/wiki#Binary-downloads

And some instructions about configuring gnuradio w/ support:
http://code.ettus.com/redmine/ettus/projects/uhd/wiki#Gnuradio-UHD

-josh

___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] problem in installing gnuradio

2011-11-20 Thread turbovectorz turbovectorz
Shantharam,

Will you please give us more details of your setup? What type of USRP? What
Ubuntu OS version?

This will help us further assist you!

Sincerely,

TVZ
RF-SDR-ASIC-SOC-DSP-FPGA-DMR Dev Team


On Sat, Nov 19, 2011 at 9:36 PM, shantharam balasubramanian <
shantharam...@gmail.com> wrote:

> Hi
>
> I was trying to install the gnuradio in one of the wireless nodes
> available in my college lab. I followed the steps given in the link;
>
> http://gnuradio.org/redmine/projects/gnuradio/wiki/UbuntuInstall
>
> I installed the image successfully, but when I tried to run some benchmark
> programs in the folder gr-digital/examples/narrowband, I got the error
> saying
>
> ImportError: cannot import name uhd
>
> I have not done this type of build process before and this is the first
> time I am doing it. Can anyone please help me out with this?
>
>
> Thank you
>
>
>
> --
> Regards
>
> Shantharam Balasubramanian
> MS in Electrical and Computer Engineering
> Rutgers University
> Ph:732-543-6863
> Email:shantharam...@gmail.com
>
> ___
> Discuss-gnuradio mailing list
> Discuss-gnuradio@gnu.org
> https://lists.gnu.org/mailman/listinfo/discuss-gnuradio
>
>
___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


[Discuss-gnuradio] problem in installing gnuradio

2011-11-19 Thread shantharam balasubramanian
Hi

I was trying to install the gnuradio in one of the wireless nodes available
in my college lab. I followed the steps given in the link;

http://gnuradio.org/redmine/projects/gnuradio/wiki/UbuntuInstall

I installed the image successfully, but when I tried to run some benchmark
programs in the folder gr-digital/examples/narrowband, I got the error
saying

ImportError: cannot import name uhd

I have not done this type of build process before and this is the first
time I am doing it. Can anyone please help me out with this?


Thank you



-- 
Regards

Shantharam Balasubramanian
MS in Electrical and Computer Engineering
Rutgers University
Ph:732-543-6863
Email:shantharam...@gmail.com
___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Problem in installing GnuRadio by script.

2011-07-03 Thread sumitstop

Let me know if some further settings I need to do .

sumitstop wrote:
> 
> Hey Marcus..a nice thing...
> 
> I did some manipulation in your script and it worked.
> 
> first I omitted the function "firmware" .. saved it and then ran the
> script.
> then I downloaded the images from
> http://www.ettus.com/downloads/uhd_releases/master_images/ (the .tar file)
> then I extracted it and copied the image folder into /usr/local/share/uhd/
> then I did chmod 644 thing there (as was written in the script) i.e. chmod
> 644 /usr/local/share/uhd/images/*
> 
> and everything was great.. now i have a gnuradio in my system without any
> error :) 
> 
> so finally done hhhh  :)
> thanks a lot for the script.
> 
> 
> 
> Marcus D. Leech wrote:
>> 
>>> Yes indeed our institute has transparent web cache to decrease the load
>>> on
>>> network.I can't say whether its flushing properly or not.I will try
>>> installing it tomorrow with a separate connection.
>>> But how is this related to the errors I am getting ..
>> Sometimes "transparent web caches" aren't so transparent.  Updates to 
>> the downstream actual website aren't
>>always tracked correctly.
>> 
>> So when the "firmware" paragraph trys to fetch stuff, the web cache 
>> delivers an incomplete version of the target
>>website--the firmware is fetched using "wget" to an http://  URL, so 
>> your webcache will definitely be involved.
>> 
>> 
>>>
>> 
>> 
>> -- 
>> Marcus Leech
>> Principal Investigator
>> Shirleys Bay Radio Astronomy Consortium
>> http://www.sbrac.org
>> 
>> 
>> 
>> ___
>> Discuss-gnuradio mailing list
>> Discuss-gnuradio@gnu.org
>> https://lists.gnu.org/mailman/listinfo/discuss-gnuradio
>> 
>> 
> 
> 


-
Sumit Kr.
Research Assistant
Communication Research center
IIIT Hyderabad
India
-- 
View this message in context: 
http://old.nabble.com/Problem-in-installing-GnuRadio-by-script.-tp31929580p31985341.html
Sent from the GnuRadio mailing list archive at Nabble.com.


___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Problem in installing GnuRadio by script.

2011-07-03 Thread sumitstop

Hey Marcus..a nice thing...

I did some manipulation in your script and it worked.

first I omitted the function "firmware" .. saved it and then ran the script.
then I downloaded the images from
http://www.ettus.com/downloads/uhd_releases/master_images/ (the .tar file)
then I extracted it and copied the image folder into /usr/local/share/uhd/
then I did chmod 644 thing there (as was written in the script) i.e. chmod
644 /usr/local/share/uhd/images/*

and everything was great.. now i have a gnuradio in my system without any
error :) 

so finally done hhhh  :)
thanks a lot for the script.



Marcus D. Leech wrote:
> 
>> Yes indeed our institute has transparent web cache to decrease the load
>> on
>> network.I can't say whether its flushing properly or not.I will try
>> installing it tomorrow with a separate connection.
>> But how is this related to the errors I am getting ..
> Sometimes "transparent web caches" aren't so transparent.  Updates to 
> the downstream actual website aren't
>always tracked correctly.
> 
> So when the "firmware" paragraph trys to fetch stuff, the web cache 
> delivers an incomplete version of the target
>website--the firmware is fetched using "wget" to an http://  URL, so 
> your webcache will definitely be involved.
> 
> 
>>
> 
> 
> -- 
> Marcus Leech
> Principal Investigator
> Shirleys Bay Radio Astronomy Consortium
> http://www.sbrac.org
> 
> 
> 
> ___
> Discuss-gnuradio mailing list
> Discuss-gnuradio@gnu.org
> https://lists.gnu.org/mailman/listinfo/discuss-gnuradio
> 
> 


-
Sumit Kr.
Research Assistant
Communication Research center
IIIT Hyderabad
India
-- 
View this message in context: 
http://old.nabble.com/Problem-in-installing-GnuRadio-by-script.-tp31929580p31985316.html
Sent from the GnuRadio mailing list archive at Nabble.com.


___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Problem in installing GnuRadio by script.

2011-06-28 Thread Marcus D. Leech

Yes indeed our institute has transparent web cache to decrease the load on
network.I can't say whether its flushing properly or not.I will try
installing it tomorrow with a separate connection.
But how is this related to the errors I am getting ..
Sometimes "transparent web caches" aren't so transparent.  Updates to 
the downstream actual website aren't

  always tracked correctly.

So when the "firmware" paragraph trys to fetch stuff, the web cache 
delivers an incomplete version of the target
  website--the firmware is fetched using "wget" to an http://  URL, so 
your webcache will definitely be involved.








--
Marcus Leech
Principal Investigator
Shirleys Bay Radio Astronomy Consortium
http://www.sbrac.org



___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Problem in installing GnuRadio by script.

2011-06-28 Thread sumitstop

Yes indeed our institute has transparent web cache to decrease the load on
network.I can't say whether its flushing properly or not.I will try
installing it tomorrow with a separate connection.
But how is this related to the errors I am getting .. 


Marcus D. Leech wrote:
> 
> On 06/28/2011 04:44 PM, sumitstop wrote:
>> Hmmm now it is at least echoing the reason for exiting :)
>>
>> "Could not find appropriate file to download Perhaps the \"downloads\"
>> directory structure at ettus.com has changed or is currently invalid "
>>
>> Again the same step by step build :(
>> I hope it will be restored soon.
> It just worked flawlessly for me at home.
> 
> I wonder if perhaps you have a "transparent web cache" on your network 
> that isn't quite flushing properly?
> 
> -- 
> 
> Marcus Leech
> Principal Investigator
> Shirleys Bay Radio Astronomy Consortium
> http://www.sbrac.org
> 
> 
> 
> ___
> Discuss-gnuradio mailing list
> Discuss-gnuradio@gnu.org
> https://lists.gnu.org/mailman/listinfo/discuss-gnuradio
> 
> 


-
Sumit Kr.
Research Assistant
Communication Research center
IIIT Hyderabad
India
-- 
View this message in context: 
http://old.nabble.com/Problem-in-installing-GnuRadio-by-script.-tp31929580p31950582.html
Sent from the GnuRadio mailing list archive at Nabble.com.


___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Problem in installing GnuRadio by script.

2011-06-28 Thread Marcus D. Leech

On 06/28/2011 04:44 PM, sumitstop wrote:

Hmmm now it is at least echoing the reason for exiting :)

"Could not find appropriate file to download Perhaps the \"downloads\"
directory structure at ettus.com has changed or is currently invalid "

Again the same step by step build :(
I hope it will be restored soon.

It just worked flawlessly for me at home.

I wonder if perhaps you have a "transparent web cache" on your network 
that isn't quite flushing properly?


--

Marcus Leech
Principal Investigator
Shirleys Bay Radio Astronomy Consortium
http://www.sbrac.org



___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Problem in installing GnuRadio by script.

2011-06-28 Thread sumitstop

Hmmm now it is at least echoing the reason for exiting :) 

"Could not find appropriate file to download Perhaps the \"downloads\"
directory structure at ettus.com has changed or is currently invalid "

Again the same step by step build :( 
I hope it will be restored soon.


sumitstop wrote:
> 
> Haha.. indeed.
> Anyways thats good for now :) I am re-running it on my systems.Will let
> you know how it goes.
> 
> 
> Marcus D. Leech wrote:
>> 
>> On 28/06/2011 12:20 PM, sumitstop wrote:
>>> Hi Marcus
>>> Even after several trials the script exits
>>> giving following error .
>>> 
>>> Fetching Gnu Radio via GIT...Done
>>> Fetching UHD via GIT...Done
>>> Building UHD...Done building/installing UHD
>>> Fetching and installing FPGA/Firmware images via wget...
>>> ...Installing from:
>>> tar: Old option `f' requires an argument.
>>> Try `tar --help' or `tar --usage' for more information.
>>> There was a problem with the TAR file:
>>> The appropriate directories were not unpacked from it
>>> In particular, UHD.../share/uhd/images does not exist
>>> 
>>> Git ports are now open at my place and git protocol is working fine.
>> I just updated http://www.sbrac.org/files/build-gnuradio  to at least 
>> detect when the directory structure it fetches from www.ettus.com
>>is invalid, and it can't determine the file to download.  It prints 
>> an error message and exits--not much more it can do.  It's hard to
>>make install scripts have "intuition" :-)
>> 
>> 
>> 
>> 
>> ___
>> Discuss-gnuradio mailing list
>> Discuss-gnuradio@gnu.org
>> https://lists.gnu.org/mailman/listinfo/discuss-gnuradio
>> 
>> 
> 
> 


-
Sumit Kr.
Research Assistant
Communication Research center
IIIT Hyderabad
India
-- 
View this message in context: 
http://old.nabble.com/Problem-in-installing-GnuRadio-by-script.-tp31929580p31949958.html
Sent from the GnuRadio mailing list archive at Nabble.com.


___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Problem in installing GnuRadio by script.

2011-06-28 Thread sumitstop

No No .. script is not psychic .Its really a peace meal for new comers :)
For the time being I should work on my older systems where it was installed
last week through the script.I hope the problem will be solved soon.



Marcus D. Leech wrote:
> 
> On 28/06/2011 12:20 PM, sumitstop wrote:
>> Hi Marcus
>> Even after several trials the script exits
>> giving following error .
>> 
>> Fetching Gnu Radio via GIT...Done
>> Fetching UHD via GIT...Done
>> Building UHD...Done building/installing UHD
>> Fetching and installing FPGA/Firmware images via wget...
>> ...Installing from:
>> tar: Old option `f' requires an argument.
>> Try `tar --help' or `tar --usage' for more information.
>> There was a problem with the TAR file:
>> The appropriate directories were not unpacked from it
>> In particular, UHD.../share/uhd/images does not exist
>> 
>> Git ports are now open at my place and git protocol is working fine.
>>
>> Everything was working fine last week.I have ubuntu 10.04.
>> Some of my friends are also getting the same error with ubuntu 10.10.
>> I will really appreciate.I checked the script step by step.The function
>> named 'firmware' is not able to fetch the latest UHD firmware/fpga
>> images.
>> I will really appreciate any reply.
>>
> It's probably the case that the firmware repository has changed 
> structure *again*, and the script is not psychic.
> 
> 
> 
> 
> 
> 
> ___
> Discuss-gnuradio mailing list
> Discuss-gnuradio@gnu.org
> https://lists.gnu.org/mailman/listinfo/discuss-gnuradio
> 
> 


-
Sumit Kr.
Research Assistant
Communication Research center
IIIT Hyderabad
India
-- 
View this message in context: 
http://old.nabble.com/Problem-in-installing-GnuRadio-by-script.-tp31929580p31948673.html
Sent from the GnuRadio mailing list archive at Nabble.com.


___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Problem in installing GnuRadio by script.

2011-06-28 Thread sumitstop

Haha.. indeed.
Anyways thats good for now :) I am re-running it on my systems.Will let you
know how it goes.


Marcus D. Leech wrote:
> 
> On 28/06/2011 12:20 PM, sumitstop wrote:
>> Hi Marcus
>> Even after several trials the script exits
>> giving following error .
>> 
>> Fetching Gnu Radio via GIT...Done
>> Fetching UHD via GIT...Done
>> Building UHD...Done building/installing UHD
>> Fetching and installing FPGA/Firmware images via wget...
>> ...Installing from:
>> tar: Old option `f' requires an argument.
>> Try `tar --help' or `tar --usage' for more information.
>> There was a problem with the TAR file:
>> The appropriate directories were not unpacked from it
>> In particular, UHD.../share/uhd/images does not exist
>> 
>> Git ports are now open at my place and git protocol is working fine.
> I just updated http://www.sbrac.org/files/build-gnuradio  to at least 
> detect when the directory structure it fetches from www.ettus.com
>is invalid, and it can't determine the file to download.  It prints 
> an error message and exits--not much more it can do.  It's hard to
>make install scripts have "intuition" :-)
> 
> 
> 
> 
> ___
> Discuss-gnuradio mailing list
> Discuss-gnuradio@gnu.org
> https://lists.gnu.org/mailman/listinfo/discuss-gnuradio
> 
> 


-
Sumit Kr.
Research Assistant
Communication Research center
IIIT Hyderabad
India
-- 
View this message in context: 
http://old.nabble.com/Problem-in-installing-GnuRadio-by-script.-tp31929580p31948789.html
Sent from the GnuRadio mailing list archive at Nabble.com.


___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Problem in installing GnuRadio by script.

2011-06-28 Thread Marcus D. Leech

On 28/06/2011 12:20 PM, sumitstop wrote:

Hi Marcus
Even after several trials the script exits
giving following error .

Fetching Gnu Radio via GIT...Done
Fetching UHD via GIT...Done
Building UHD...Done building/installing UHD
Fetching and installing FPGA/Firmware images via wget...
...Installing from:
tar: Old option `f' requires an argument.
Try `tar --help' or `tar --usage' for more information.
There was a problem with the TAR file:
The appropriate directories were not unpacked from it
In particular, UHD.../share/uhd/images does not exist

Git ports are now open at my place and git protocol is working fine.
I just updated http://www.sbrac.org/files/build-gnuradio  to at least 
detect when the directory structure it fetches from www.ettus.com
  is invalid, and it can't determine the file to download.  It prints 
an error message and exits--not much more it can do.  It's hard to

  make install scripts have "intuition" :-)




___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Problem in installing GnuRadio by script.

2011-06-28 Thread Marcus D. Leech

On 28/06/2011 12:20 PM, sumitstop wrote:

Hi Marcus
Even after several trials the script exits
giving following error .

Fetching Gnu Radio via GIT...Done
Fetching UHD via GIT...Done
Building UHD...Done building/installing UHD
Fetching and installing FPGA/Firmware images via wget...
...Installing from:
tar: Old option `f' requires an argument.
Try `tar --help' or `tar --usage' for more information.
There was a problem with the TAR file:
The appropriate directories were not unpacked from it
In particular, UHD.../share/uhd/images does not exist

Git ports are now open at my place and git protocol is working fine.

Everything was working fine last week.I have ubuntu 10.04.
Some of my friends are also getting the same error with ubuntu 10.10.
I will really appreciate.I checked the script step by step.The function
named 'firmware' is not able to fetch the latest UHD firmware/fpga images.
I will really appreciate any reply.

It's probably the case that the firmware repository has changed 
structure *again*, and the script is not psychic.







___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Problem in installing GnuRadio by script.

2011-06-28 Thread sumitstop

Hi Marcus
Even after several trials the script exits 
giving following error .

Fetching Gnu Radio via GIT...Done
Fetching UHD via GIT...Done
Building UHD...Done building/installing UHD
Fetching and installing FPGA/Firmware images via wget...
...Installing from:
tar: Old option `f' requires an argument.
Try `tar --help' or `tar --usage' for more information.
There was a problem with the TAR file:
The appropriate directories were not unpacked from it
In particular, UHD.../share/uhd/images does not exist

Git ports are now open at my place and git protocol is working fine.

Everything was working fine last week.I have ubuntu 10.04.
Some of my friends are also getting the same error with ubuntu 10.10.
I will really appreciate.I checked the script step by step.The function
named 'firmware' is not able to fetch the latest UHD firmware/fpga images.
I will really appreciate any reply. 
 
 

Marcus D. Leech wrote:
> 
> On 27/06/2011 11:08 AM, sumitstop wrote:
>> Hi Marcus its more than 48 hours now and still the same message :(
>>
>> Continuing with script
>> Installing pre-prequisites...Checking for package libfontconfig1-dev
>> Checking for package libxrender-dev
>> Checking for package libpulse-dev
>> Checking for package swig
>> Checking for package g++
>> Checking for package automake
>> Checking for package autoconf
>> Checking for package libtool
>> Checking for package python-dev
>> Checking for package libfftw3-dev
>> Checking for package libcppunit-dev
>> Checking for package libboost-all-dev
>> Checking for package libusb-dev
>> Checking for package libusb-1.0-0-dev
>> Checking for package fort77
>> Checking for package sdcc
>> Checking for package sdcc-libraries
>> Checking for package libsdl1.2-dev
>> Checking for package python-wxgtk2.8
>> Checking for package git-core
>> Checking for package guile-1.8-dev
>> Checking for package libqt4-dev
>> Checking for package python-numpy
>> Checking for package ccache
>> Checking for package python-opengl
>> Checking for package libgsl0-dev
>> Checking for package python-cheetah
>> Checking for package python-lxml
>> Checking for package doxygen
>> Checking for package qt4-dev-tools
>> Checking for package libusb-1.0-0-dev
>> Checking for package libqwt5-qt4-dev
>> Checking for package libqwtplot3d-qt4-dev
>> Checking for package pyqt4-dev-tools
>> Checking for package python-qwt5-qt4
>> Checking for package cmake
>> Checking for package git-core
>> Checking for package wget
>> Checking for package sdcc
>> Done
>> Fetching Gnu Radio via GIT...GIT checkout of Gnu Radio failed!
>>
>> Is there something else to be done in my network settings ??
> It's possible that your local network doesn't allow the GIT protocol to 
> propagate.
> 
> 
> 
> ___
> Discuss-gnuradio mailing list
> Discuss-gnuradio@gnu.org
> https://lists.gnu.org/mailman/listinfo/discuss-gnuradio
> 
> 


-
Sumit Kr.
Research Assistant
Communication Research center
IIIT Hyderabad
India
-- 
View this message in context: 
http://old.nabble.com/Problem-in-installing-GnuRadio-by-script.-tp31929580p31947829.html
Sent from the GnuRadio mailing list archive at Nabble.com.


___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Problem in installing GnuRadio by script.

2011-06-27 Thread sumitstop

And a new error came

Fetching Gnu Radio via GIT...Done
Fetching UHD via GIT...Done
Building UHD...Done building/installing UHD
Fetching and installing FPGA/Firmware images via wget...
...Installing from:
tar: Old option `f' requires an argument.
Try `tar --help' or `tar --usage' for more information.
There was a problem with the TAR file:
The appropriate directories were not unpacked from it
In particular, UHD.../share/uhd/images does not exist




sumitstop wrote:
> 
> Hi Marcus you were right.I just came to know that git protocol was not
> working for some reasons in my institute.
> Replacing with the link told by  Chris worked finally :) 
> 
> Marcus D. Leech wrote:
>> 
>> On 27/06/2011 3:29 PM, Christopher Dean wrote:
>>> Hi Sumit,
>>>
>>> There are two links that we can use to access the current version of 
>>> the GNU Radio source:  git://gnuradio.org/gnuradio and 
>>> http://gnuradio.org/git/gnuradio.git .
>>>
>>> As of now, the second link does not work for me, but the first one 
>>> does. You might be able to fix your problem by finding the line in the 
>>> script where you try to git the source code, and replace it with : 
>>> "git clone git://gnuradio.org/gnuradio", excluding quotation marks.
>>>
>>> This information is from: 
>>> http://gnuradio.org/redmine/projects/gnuradio/wiki/Download .
>>>
>>> Hope that helps,
>>>
>>> Chris
>> And it's funny because I used the "http:" version in the build-gnuradio 
>> script specifically because some peoples local firewall rules
>>preclude the use of the GIT protocol.  Sigh.
>> 
>> Perhaps I'll update the script to try both methods.
>> 
>> 
>> 
>> 
>> 
>> ___
>> Discuss-gnuradio mailing list
>> Discuss-gnuradio@gnu.org
>> https://lists.gnu.org/mailman/listinfo/discuss-gnuradio
>> 
>> 
> 
> 


-
Sumit Kr.
Research Assistant
Communication Research center
IIIT Hyderabad
India
-- 
View this message in context: 
http://old.nabble.com/Problem-in-installing-GnuRadio-by-script.-tp31929580p31941651.html
Sent from the GnuRadio mailing list archive at Nabble.com.


___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Problem in installing GnuRadio by script.

2011-06-27 Thread sumitstop

Hi Marcus you were right.I just came to know that git protocol was not
working for some reasons in my institute.
Replacing with the link told by  Chris worked finally :) 

Marcus D. Leech wrote:
> 
> On 27/06/2011 3:29 PM, Christopher Dean wrote:
>> Hi Sumit,
>>
>> There are two links that we can use to access the current version of 
>> the GNU Radio source:  git://gnuradio.org/gnuradio and 
>> http://gnuradio.org/git/gnuradio.git .
>>
>> As of now, the second link does not work for me, but the first one 
>> does. You might be able to fix your problem by finding the line in the 
>> script where you try to git the source code, and replace it with : 
>> "git clone git://gnuradio.org/gnuradio", excluding quotation marks.
>>
>> This information is from: 
>> http://gnuradio.org/redmine/projects/gnuradio/wiki/Download .
>>
>> Hope that helps,
>>
>> Chris
> And it's funny because I used the "http:" version in the build-gnuradio 
> script specifically because some peoples local firewall rules
>preclude the use of the GIT protocol.  Sigh.
> 
> Perhaps I'll update the script to try both methods.
> 
> 
> 
> 
> 
> ___
> Discuss-gnuradio mailing list
> Discuss-gnuradio@gnu.org
> https://lists.gnu.org/mailman/listinfo/discuss-gnuradio
> 
> 


-
Sumit Kr.
Research Assistant
Communication Research center
IIIT Hyderabad
India
-- 
View this message in context: 
http://old.nabble.com/Problem-in-installing-GnuRadio-by-script.-tp31929580p31941457.html
Sent from the GnuRadio mailing list archive at Nabble.com.


___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Problem in installing GnuRadio by script.

2011-06-27 Thread sumitstop

OOPS  and it worked .. thanks a lot :) 

Christopher Dean-3 wrote:
> 
> Hi Sumit,
> 
> There are two links that we can use to access the current version of the 
> GNU Radio source:  git://gnuradio.org/gnuradio and 
> http://gnuradio.org/git/gnuradio.git .
> 
> As of now, the second link does not work for me, but the first one does. 
> You might be able to fix your problem by finding the line in the script 
> where you try to git the source code, and replace it with : "git clone 
> git://gnuradio.org/gnuradio", excluding quotation marks.
> 
> This information is from: 
> http://gnuradio.org/redmine/projects/gnuradio/wiki/Download .
> 
> Hope that helps,
> 
> Chris
> 
> On 6/26/2011 2:31 AM, sumitstop wrote:
> 
>>
>> Today when I tried to install Gnuradio by Marcus Script I got following
>> message.
>>
>> "Fetching Gnu Radio via GIT...GIT checkout of Gnu Radio failed!"
>>
>> Yesterday it was working fine and I installed it on my two Pc's.
>>
>>
>>
>>
>>
>>
>> -
>> Sumit Kr.
>> Research Assistant
>> Communication Research center
>> IIIT Hyderabad
>> India
> 
> ___
> Discuss-gnuradio mailing list
> Discuss-gnuradio@gnu.org
> https://lists.gnu.org/mailman/listinfo/discuss-gnuradio
> 
> 


-
Sumit Kr.
Research Assistant
Communication Research center
IIIT Hyderabad
India
-- 
View this message in context: 
http://old.nabble.com/Problem-in-installing-GnuRadio-by-script.-tp31929580p31941443.html
Sent from the GnuRadio mailing list archive at Nabble.com.


___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Problem in installing GnuRadio by script.

2011-06-27 Thread Marcus D. Leech

On 27/06/2011 3:29 PM, Christopher Dean wrote:

Hi Sumit,

There are two links that we can use to access the current version of 
the GNU Radio source:  git://gnuradio.org/gnuradio and 
http://gnuradio.org/git/gnuradio.git .


As of now, the second link does not work for me, but the first one 
does. You might be able to fix your problem by finding the line in the 
script where you try to git the source code, and replace it with : 
"git clone git://gnuradio.org/gnuradio", excluding quotation marks.


This information is from: 
http://gnuradio.org/redmine/projects/gnuradio/wiki/Download .


Hope that helps,

Chris
And it's funny because I used the "http:" version in the build-gnuradio 
script specifically because some peoples local firewall rules

  preclude the use of the GIT protocol.  Sigh.

Perhaps I'll update the script to try both methods.





___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Problem in installing GnuRadio by script.

2011-06-27 Thread Christopher Dean

Hi Sumit,

There are two links that we can use to access the current version of the 
GNU Radio source:  git://gnuradio.org/gnuradio and 
http://gnuradio.org/git/gnuradio.git .


As of now, the second link does not work for me, but the first one does. 
You might be able to fix your problem by finding the line in the script 
where you try to git the source code, and replace it with : "git clone 
git://gnuradio.org/gnuradio", excluding quotation marks.


This information is from: 
http://gnuradio.org/redmine/projects/gnuradio/wiki/Download .


Hope that helps,

Chris

On 6/26/2011 2:31 AM, sumitstop wrote:



Today when I tried to install Gnuradio by Marcus Script I got following
message.

"Fetching Gnu Radio via GIT...GIT checkout of Gnu Radio failed!"

Yesterday it was working fine and I installed it on my two Pc's.






-
Sumit Kr.
Research Assistant
Communication Research center
IIIT Hyderabad
India


___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Problem in installing GnuRadio by script.

2011-06-27 Thread Marcus D. Leech

On 27/06/2011 11:08 AM, sumitstop wrote:

Hi Marcus its more than 48 hours now and still the same message :(

Continuing with script
Installing pre-prequisites...Checking for package libfontconfig1-dev
Checking for package libxrender-dev
Checking for package libpulse-dev
Checking for package swig
Checking for package g++
Checking for package automake
Checking for package autoconf
Checking for package libtool
Checking for package python-dev
Checking for package libfftw3-dev
Checking for package libcppunit-dev
Checking for package libboost-all-dev
Checking for package libusb-dev
Checking for package libusb-1.0-0-dev
Checking for package fort77
Checking for package sdcc
Checking for package sdcc-libraries
Checking for package libsdl1.2-dev
Checking for package python-wxgtk2.8
Checking for package git-core
Checking for package guile-1.8-dev
Checking for package libqt4-dev
Checking for package python-numpy
Checking for package ccache
Checking for package python-opengl
Checking for package libgsl0-dev
Checking for package python-cheetah
Checking for package python-lxml
Checking for package doxygen
Checking for package qt4-dev-tools
Checking for package libusb-1.0-0-dev
Checking for package libqwt5-qt4-dev
Checking for package libqwtplot3d-qt4-dev
Checking for package pyqt4-dev-tools
Checking for package python-qwt5-qt4
Checking for package cmake
Checking for package git-core
Checking for package wget
Checking for package sdcc
Done
Fetching Gnu Radio via GIT...GIT checkout of Gnu Radio failed!

Is there something else to be done in my network settings ??
It's possible that your local network doesn't allow the GIT protocol to 
propagate.




___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Problem in installing GnuRadio by script.

2011-06-27 Thread sumitstop

Hi Marcus its more than 48 hours now and still the same message :(

Continuing with script
Installing pre-prequisites...Checking for package libfontconfig1-dev
Checking for package libxrender-dev
Checking for package libpulse-dev
Checking for package swig
Checking for package g++
Checking for package automake
Checking for package autoconf
Checking for package libtool
Checking for package python-dev
Checking for package libfftw3-dev
Checking for package libcppunit-dev
Checking for package libboost-all-dev
Checking for package libusb-dev
Checking for package libusb-1.0-0-dev
Checking for package fort77
Checking for package sdcc
Checking for package sdcc-libraries
Checking for package libsdl1.2-dev
Checking for package python-wxgtk2.8
Checking for package git-core
Checking for package guile-1.8-dev
Checking for package libqt4-dev
Checking for package python-numpy
Checking for package ccache
Checking for package python-opengl
Checking for package libgsl0-dev
Checking for package python-cheetah
Checking for package python-lxml
Checking for package doxygen
Checking for package qt4-dev-tools
Checking for package libusb-1.0-0-dev
Checking for package libqwt5-qt4-dev
Checking for package libqwtplot3d-qt4-dev
Checking for package pyqt4-dev-tools
Checking for package python-qwt5-qt4
Checking for package cmake
Checking for package git-core
Checking for package wget
Checking for package sdcc
Done
Fetching Gnu Radio via GIT...GIT checkout of Gnu Radio failed!

Is there something else to be done in my network settings ?? 




Marcus D. Leech wrote:
> 
> On 06/26/2011 02:31 AM, sumitstop wrote:
>>
>> Today when I tried to install Gnuradio by Marcus Script I got following
>> message.
>>
>> "Fetching Gnu Radio via GIT...GIT checkout of Gnu Radio failed!"
>>
>> Yesterday it was working fine and I installed it on my two Pc's.
>>
>>
>>
> Sometimes the GIT server that hosts the Gnu Radio source goes down, 
> that's probably what happened there.
> 
> 
> -- 
> Marcus Leech
> Principal Investigator
> Shirleys Bay Radio Astronomy Consortium
> http://www.sbrac.org
> 
> 
> 
> ___
> Discuss-gnuradio mailing list
> Discuss-gnuradio@gnu.org
> https://lists.gnu.org/mailman/listinfo/discuss-gnuradio
> 
> 


-
Sumit Kr.
Research Assistant
Communication Research center
IIIT Hyderabad
India
-- 
View this message in context: 
http://old.nabble.com/Problem-in-installing-GnuRadio-by-script.-tp31929580p31938056.html
Sent from the GnuRadio mailing list archive at Nabble.com.


___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Problem in installing GnuRadio by script.

2011-06-26 Thread Marcus D. Leech

On 06/26/2011 02:31 AM, sumitstop wrote:


Today when I tried to install Gnuradio by Marcus Script I got following
message.

"Fetching Gnu Radio via GIT...GIT checkout of Gnu Radio failed!"

Yesterday it was working fine and I installed it on my two Pc's.



Sometimes the GIT server that hosts the Gnu Radio source goes down, 
that's probably what happened there.



--
Marcus Leech
Principal Investigator
Shirleys Bay Radio Astronomy Consortium
http://www.sbrac.org



___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


[Discuss-gnuradio] Problem in installing GnuRadio by script.

2011-06-25 Thread sumitstop


Today when I tried to install Gnuradio by Marcus Script I got following
message.

"Fetching Gnu Radio via GIT...GIT checkout of Gnu Radio failed!"

Yesterday it was working fine and I installed it on my two Pc's.






-
Sumit Kr.
Research Assistant
Communication Research center
IIIT Hyderabad
India
-- 
View this message in context: 
http://old.nabble.com/Problem-in-installing-GnuRadio-by-script.-tp31929580p31929580.html
Sent from the GnuRadio mailing list archive at Nabble.com.


___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Problem in Installing gnuradio-3.2_Please help

2009-03-16 Thread Eric Blossom
On Sun, Mar 15, 2009 at 03:08:32PM -0700, Somya Ajmera wrote:

> I am sorry for that, but I am stuck in that for more than a week
> now. I had tried many times installing it giving different options
> but none of them worked. The only way it seems to me is to install
> Fedora again and then try to install this newer version.

You didn't send the entire output from configure.

If you look at the output from configure, there will be some clues as
to what things gnuradio-core dependened on that weren't found.

Eric


___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
http://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Problem in Installing gnuradio-3.2_Please help

2009-03-15 Thread Somya Ajmera
Hey Ali, thanks for replying. No, I tried to install the new version on top of 
the old, but when it didn't installed then I tried to remove the older version 
by using the commands:

yum remove gnuradio-3.1.3.

It removed 2 packages i guess, but when I again tried to install 3.2, it gave 
me the same problem.

Thanks & Regards,
Somya Ajmera

--- On Mon, 16/3/09, Mir Ali  wrote:
From: Mir Ali 
Subject: Re: [Discuss-gnuradio] Problem in Installing gnuradio-3.2_Please help
To: ajmeraso...@yahoo.com
Cc: discuss-gnuradio@gnu.org
Date: Monday, 16 March, 2009, 3:42 AM

Did you try doing a clean install by removing the older version of gnuradio?



On Sun, Mar 15, 2009 at 4:54 PM, Johnathan Corgan 
 wrote:

On Sun, 2009-03-15 at 14:46 -0700, Somya Ajmera wrote:



> Hi , I am facing a problem in installing gnuradio-3.2. I was able to

> install gnuradio-3.1.3 properly but when I tried to install this

> newer version on the top of the older version, maximum of the packages

> are not getting configured including gnuradio-core and usrp.

>

> I am attaching the log ./configure file for the reference (open it

> with word pad). I am a newbie to Linux and to gnuradio. I would really

> appreciate if anybody can help me regarding this matter.

>



Sending your problem report to the list three times does not motivate

anyone to help you to solve it.



Johnathan







___

Discuss-gnuradio mailing list

Discuss-gnuradio@gnu.org

http://lists.gnu.org/mailman/listinfo/discuss-gnuradio




-- 
Mir Murtuza Ali
Graduate Student
Center for Wireless Communications
University of Mississippi
University, MS 38677





  New Email addresses available on Yahoo!
Get the Email name you've always wanted on the new @ymail and @rocketmail. 
Hurry before someone else does!
http://mail.promotions.yahoo.com/newdomains/aa/___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
http://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Problem in Installing gnuradio-3.2_Please help

2009-03-15 Thread Mir Ali
Did you try doing a clean install by removing the older version of gnuradio?



On Sun, Mar 15, 2009 at 4:54 PM, Johnathan Corgan <
jcor...@corganenterprises.com> wrote:

> On Sun, 2009-03-15 at 14:46 -0700, Somya Ajmera wrote:
>
> > Hi , I am facing a problem in installing gnuradio-3.2. I was able to
> > install gnuradio-3.1.3 properly but when I tried to install this
> > newer version on the top of the older version, maximum of the packages
> > are not getting configured including gnuradio-core and usrp.
> >
> > I am attaching the log ./configure file for the reference (open it
> > with word pad). I am a newbie to Linux and to gnuradio. I would really
> > appreciate if anybody can help me regarding this matter.
> >
>
> Sending your problem report to the list three times does not motivate
> anyone to help you to solve it.
>
> Johnathan
>
>
>
> ___
> Discuss-gnuradio mailing list
> Discuss-gnuradio@gnu.org
> http://lists.gnu.org/mailman/listinfo/discuss-gnuradio
>



-- 
Mir Murtuza Ali
Graduate Student
Center for Wireless Communications
University of Mississippi
University, MS 38677
___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
http://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Problem in Installing gnuradio-3.2_Please help

2009-03-15 Thread Somya Ajmera
I am sorry for that, but I am stuck in that for more than a week now. I had 
tried many times installing it giving different options but none of them 
worked. The only way it seems to me is to install Fedora again and then try to 
install this newer version.

--- On Mon, 16/3/09, Johnathan Corgan  wrote:
From: Johnathan Corgan 
Subject: Re: [Discuss-gnuradio] Problem in Installing gnuradio-3.2_Please help
To: ajmeraso...@yahoo.com
Cc: discuss-gnuradio@gnu.org
Date: Monday, 16 March, 2009, 3:24 AM

On Sun, 2009-03-15 at 14:46 -0700, Somya Ajmera wrote:

> Hi , I am facing a problem in installing gnuradio-3.2. I was able to
> install gnuradio-3.1.3 properly but when I tried to install this
> newer version on the top of the older version, maximum of the packages
> are not getting configured including gnuradio-core and usrp. 
> 
> I am attaching the log ./configure file for the reference (open it
> with word pad). I am a newbie to Linux and to gnuradio. I would really
> appreciate if anybody can help me regarding this matter.
> 

Sending your problem report to the list three times does not motivate
anyone to help you to solve it.

Johnathan




  Get your new Email address!
Grab the Email name you've always wanted before someone else does!
http://mail.promotions.yahoo.com/newdomains/aa/___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
http://lists.gnu.org/mailman/listinfo/discuss-gnuradio


Re: [Discuss-gnuradio] Problem in Installing gnuradio-3.2_Please help

2009-03-15 Thread Johnathan Corgan
On Sun, 2009-03-15 at 14:46 -0700, Somya Ajmera wrote:

> Hi , I am facing a problem in installing gnuradio-3.2. I was able to
> install gnuradio-3.1.3 properly but when I tried to install this
> newer version on the top of the older version, maximum of the packages
> are not getting configured including gnuradio-core and usrp. 
> 
> I am attaching the log ./configure file for the reference (open it
> with word pad). I am a newbie to Linux and to gnuradio. I would really
> appreciate if anybody can help me regarding this matter.
> 

Sending your problem report to the list three times does not motivate
anyone to help you to solve it.

Johnathan



___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
http://lists.gnu.org/mailman/listinfo/discuss-gnuradio


[Discuss-gnuradio] Problem in Installing gnuradio-3.2_Please help

2009-03-15 Thread Somya Ajmera
Hi , I am facing
a problem in installing gnuradio-3.2. I was able to install
gnuradio-3.1.3 properly but when I tried to install this  newer version
on the top of the older version, maximum of the packages are not
getting configured including gnuradio-core and usrp. 

 I
am attaching the log ./configure file for the reference (open it with
word pad). I am a newbie to Linux and to gnuradio. I would really
appreciate if anybody can help me regarding this matter.

Thanks & Regards,
Somya Ajmera


  New Email addresses available on Yahoo!
Get the Email name you've always wanted on the new @ymail and @rocketmail. 
Hurry before someone else does!
http://mail.promotions.yahoo.com/newdomains/aa/checking for getrusage... yes
checking for sched_setscheduler... (cached) yes
checking for pthread_setschedparam... yes
checking for sigaction... (cached) yes
checking for snprintf... (cached) yes
checking for USB... no
checking usb.h usability... yes
checking usb.h presence... yes
checking for usb.h... yes
checking for library containing usb_bulk_write... -lusb
checking for sdcc... no
checking for asx8051... no
USRP requires sdcc. sdcc not found. See http://sdcc.sf.net
Unable to find firmware compiler SDCC.
Not building component usrp.
checking whether host_os is linux*... yes
checking for arpa/inet.h... (cached) yes
checking for byteswap.h... (cached) yes
checking linux/if_packet.h usability... yes
checking linux/if_packet.h presence... yes
checking for linux/if_packet.h... yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking sys/un.h usability... yes
checking sys/un.h presence... yes
checking for sys/un.h... yes
checking for struct msghdr.msg_control... yes
checking for struct msghdr.msg_accrights... no
checking for struct cmsgcred.cmcred_uid... no
checking for struct ucred.uid... yes
Component usrp2 passed configuration checks; building.
Component gr-usrp requires usrp, which is not being built or specified via 
pre-installed files.
Not building component gr-usrp.
Component gr-usrp2 requires gnuradio-core, which is not being built or 
specified via pre-installed files.
Not building component gr-usrp2.
Component gr-gcell requires gcell, which is not being built or specified via 
pre-installed files.
Not building component gr-gcell.
Component gr-msdd6000 requires gnuradio-core, which is not being built or 
specified via pre-installed files.
checking for netinet/in.h... (cached) yes
checking for arpa/inet.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking netdb.h usability... yes
checking netdb.h presence... yes
checking for netdb.h... yes
Not building component gr-msdd6000.
Component gr-audio-alsa requires gnuradio-core, which is not being built or 
specified via pre-installed files.
Not building component gr-audio-alsa.
Component gr-audio-jack requires gnuradio-core, which is not being built or 
specified via pre-installed files.
Not building component gr-audio-jack.
Component gr-audio-oss requires gnuradio-core, which is not being built or 
specified via pre-installed files.
Not building component gr-audio-oss.
Component gr-audio-osx requires gnuradio-core, which is not being built or 
specified via pre-installed files.
Not building component gr-audio-osx.
Component gr-audio-portaudio requires gnuradio-core, which is not being built 
or specified via pre-installed files.
Not building component gr-audio-portaudio.
Component gr-audio-windows requires gnuradio-core, which is not being built or 
specified via pre-installed files.
Not building component gr-audio-windows.
Component gr-atsc requires gnuradio-core, which is not being built or specified 
via pre-installed files.
Not building component gr-atsc.
Component gr-comedi requires gnuradio-core, which is not being built or 
specified via pre-installed files.
Not building component gr-comedi.
Component gr-cvsd-vocoder requires gnuradio-core, which is not being built or 
specified via pre-installed files.
Not building component gr-cvsd-vocoder.
Component gr-gpio requires usrp, which is not being built or specified via 
pre-installed files.
Not building component gr-gpio.
Component gr-gsm-fr-vocoder requires gnuradio-core, which is not being built or 
specified via pre-installed files.
Not building component gr-gsm-fr-vocoder.
Component gr-pager requires gnuradio-core, which is not being built or 
specified via pre-installed files.
Not building component gr-pager.
Component gr-radar-mono requires usrp, which is not being built or specified 
via pre-installed files.
Not building component gr-radar-mono.
Component gr-radio-astronomy requires gnuradio-core, which is not being built 
or specified via pre-installed files.
Not building component gr-radio-astronomy.
Component gr-trellis requires gnuradio-core, which is not being built or 
specified via pre-installed files.
Not building component gr-trellis.
Component gr-video-sdl requires gnuradio-core, which is not being built or 
specifie

[Discuss-gnuradio] Problem in Installing gnuradio-3.2_Please help

2009-03-15 Thread Somya Ajmera
Hi , I am facing
a problem in installing gnuradio-3.2. I was able to install
gnuradio-3.1.3 properly but when I tried to install this  newer version
on the top of the older version, maximum of the packages are not
getting configured including gnuradio-core and usrp. 

When I
started installing this newer version I faced the same problem with the
major packages, then one of my friend suggested to add the library path
for some missing packages (mainly gsl-which was already installed on my
system but the configure script was not able to detect it) and then by
doing that I was able to get maximum of them configured and then I did
the usual make, make check and make install. After that when I tried to
run grc I got the following error :

Traceback (most recent call last):
  File "/usr/local/bin/grc", line 25, in 
    from gnuradio.grc.platforms.base.Constants import VERSION
ImportError: No module named grc.platforms.base.Constants
[r...@somya gnuradio]# 

 I also tried by setting the path for Python, but was not
able to get it over. but I was able to run any other python example
namely the audio_tone one.Then I again tried to configure the newer
version without adding any library path but faced the same problem with
the packages.  

I
am attaching the log ./configure file for the reference (open it with
word pad). I am a newbie to Linux and to gnuradio. I would really
appreciate if anybody can help me regarding this matter.

Thanks & Regards,
Somya Ajmera





  Get your new Email address!
Grab the Email name you've always wanted before someone else does!
http://mail.promotions.yahoo.com/newdomains/aa/checking for getrusage... yes
checking for sched_setscheduler... (cached) yes
checking for pthread_setschedparam... yes
checking for sigaction... (cached) yes
checking for snprintf... (cached) yes
checking for USB... no
checking usb.h usability... yes
checking usb.h presence... yes
checking for usb.h... yes
checking for library containing usb_bulk_write... -lusb
checking for sdcc... no
checking for asx8051... no
USRP requires sdcc. sdcc not found. See http://sdcc.sf.net
Unable to find firmware compiler SDCC.
Not building component usrp.
checking whether host_os is linux*... yes
checking for arpa/inet.h... (cached) yes
checking for byteswap.h... (cached) yes
checking linux/if_packet.h usability... yes
checking linux/if_packet.h presence... yes
checking for linux/if_packet.h... yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking sys/un.h usability... yes
checking sys/un.h presence... yes
checking for sys/un.h... yes
checking for struct msghdr.msg_control... yes
checking for struct msghdr.msg_accrights... no
checking for struct cmsgcred.cmcred_uid... no
checking for struct ucred.uid... yes
Component usrp2 passed configuration checks; building.
Component gr-usrp requires usrp, which is not being built or specified via 
pre-installed files.
Not building component gr-usrp.
Component gr-usrp2 requires gnuradio-core, which is not being built or 
specified via pre-installed files.
Not building component gr-usrp2.
Component gr-gcell requires gcell, which is not being built or specified via 
pre-installed files.
Not building component gr-gcell.
Component gr-msdd6000 requires gnuradio-core, which is not being built or 
specified via pre-installed files.
checking for netinet/in.h... (cached) yes
checking for arpa/inet.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking netdb.h usability... yes
checking netdb.h presence... yes
checking for netdb.h... yes
Not building component gr-msdd6000.
Component gr-audio-alsa requires gnuradio-core, which is not being built or 
specified via pre-installed files.
Not building component gr-audio-alsa.
Component gr-audio-jack requires gnuradio-core, which is not being built or 
specified via pre-installed files.
Not building component gr-audio-jack.
Component gr-audio-oss requires gnuradio-core, which is not being built or 
specified via pre-installed files.
Not building component gr-audio-oss.
Component gr-audio-osx requires gnuradio-core, which is not being built or 
specified via pre-installed files.
Not building component gr-audio-osx.
Component gr-audio-portaudio requires gnuradio-core, which is not being built 
or specified via pre-installed files.
Not building component gr-audio-portaudio.
Component gr-audio-windows requires gnuradio-core, which is not being built or 
specified via pre-installed files.
Not building component gr-audio-windows.
Component gr-atsc requires gnuradio-core, which is not being built or specified 
via pre-installed files.
Not building component gr-atsc.
Component gr-comedi requires gnuradio-core, which is not being built or 
specified via pre-installed files.
Not building component gr-comedi.
Component gr-cvsd-vocoder requires gnuradio-core, which is not being built or 
specified via pre-installed files.
Not building component gr-cvsd-vocoder.
Component gr-gpio requires u

[Discuss-gnuradio] Problem in Installing gnuradio-3.2

2009-03-14 Thread Somya Ajmera
Hi , I am facing
a problem in installing gnuradio-3.2. I was able to install
gnuradio-3.1.3 properly but when I tried to install this  newer version
on the top of the older version, maximum of the packages are not
getting configured including gnuradio-core and usrp. 

When I
started installing this newer version I faced the same problem with the
major packages, then one of my friend suggested to add the library path
for some missing packages (mainly gsl-which was already installed on my
system but the configure script was not able to detect it) and then by
doing that I was able to get maximum of them configured and then I did
the usual make, make check and make install. After that when I tried to
run grc it got the following error :

Traceback (most recent call last):
  File "/usr/local/bin/grc", line 25, in 
    from gnuradio.grc.platforms.base.Constants import VERSION
ImportError: No module named grc.platforms.base.Constants
[r...@somya gnuradio]# 

As
you suggested in the reply, I sett ed the path for Python, but was not
able to get it over. but I was able to run any other python example
namely the audio_tone one.Then I again tried to configure the newer
version without adding any library path but faced the same problem with
the packages.  

I am attaching the log ./configure file for the reference (open it with word 
pad). I am a newbie to Linux and to gnuradio. I would really
appreciate if anybody can help me regarding this matter.

Thanks & Regards,
Somya Ajmera


  New Email addresses available on Yahoo!
Get the Email name you've always wanted on the new @ymail and @rocketmail. 
Hurry before someone else does!
http://mail.promotions.yahoo.com/newdomains/aa/checking for getrusage... yes
checking for sched_setscheduler... (cached) yes
checking for pthread_setschedparam... yes
checking for sigaction... (cached) yes
checking for snprintf... (cached) yes
checking for USB... no
checking usb.h usability... yes
checking usb.h presence... yes
checking for usb.h... yes
checking for library containing usb_bulk_write... -lusb
checking for sdcc... no
checking for asx8051... no
USRP requires sdcc. sdcc not found. See http://sdcc.sf.net
Unable to find firmware compiler SDCC.
Not building component usrp.
checking whether host_os is linux*... yes
checking for arpa/inet.h... (cached) yes
checking for byteswap.h... (cached) yes
checking linux/if_packet.h usability... yes
checking linux/if_packet.h presence... yes
checking for linux/if_packet.h... yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking sys/un.h usability... yes
checking sys/un.h presence... yes
checking for sys/un.h... yes
checking for struct msghdr.msg_control... yes
checking for struct msghdr.msg_accrights... no
checking for struct cmsgcred.cmcred_uid... no
checking for struct ucred.uid... yes
Component usrp2 passed configuration checks; building.
Component gr-usrp requires usrp, which is not being built or specified via 
pre-installed files.
Not building component gr-usrp.
Component gr-usrp2 requires gnuradio-core, which is not being built or 
specified via pre-installed files.
Not building component gr-usrp2.
Component gr-gcell requires gcell, which is not being built or specified via 
pre-installed files.
Not building component gr-gcell.
Component gr-msdd6000 requires gnuradio-core, which is not being built or 
specified via pre-installed files.
checking for netinet/in.h... (cached) yes
checking for arpa/inet.h... (cached) yes
checking for sys/socket.h... (cached) yes
checking netdb.h usability... yes
checking netdb.h presence... yes
checking for netdb.h... yes
Not building component gr-msdd6000.
Component gr-audio-alsa requires gnuradio-core, which is not being built or 
specified via pre-installed files.
Not building component gr-audio-alsa.
Component gr-audio-jack requires gnuradio-core, which is not being built or 
specified via pre-installed files.
Not building component gr-audio-jack.
Component gr-audio-oss requires gnuradio-core, which is not being built or 
specified via pre-installed files.
Not building component gr-audio-oss.
Component gr-audio-osx requires gnuradio-core, which is not being built or 
specified via pre-installed files.
Not building component gr-audio-osx.
Component gr-audio-portaudio requires gnuradio-core, which is not being built 
or specified via pre-installed files.
Not building component gr-audio-portaudio.
Component gr-audio-windows requires gnuradio-core, which is not being built or 
specified via pre-installed files.
Not building component gr-audio-windows.
Component gr-atsc requires gnuradio-core, which is not being built or specified 
via pre-installed files.
Not building component gr-atsc.
Component gr-comedi requires gnuradio-core, which is not being built or 
specified via pre-installed files.
Not building component gr-comedi.
Component gr-cvsd-vocoder requires gnuradio-core, which is not being built or 
specified via pre-installed files.