Changes between Version 3 and Version 4 of Internal/BuildingGNURadioImage


Ignore:
Timestamp:
Dec 19, 2008, 7:52:11 PM (15 years ago)
Author:
ssugrim
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Internal/BuildingGNURadioImage

    v3 v4  
    2424
    2525We're going to attempt the debian source install, the apt install doesn't work for the previously mentioned reasons.
     26We installed the ''build-essentials'' package. And we nnow modify the sources list again.
     27we added
     28{{{
     29 deb http://ftp.at.debian.org/debian/ etch main non-free contrib
     30}}}
    2631
    27 We installed the ''build-essentials'' package. And we nnow modify the sources list again.
     32We then ran '''apt-get build-dep gnuradio''' which had 519 megs of stuff to install. It was followed by '''apt-get build-dep usrp''' which had nothing to install.
    2833
    29 we added deb http://ftp.at.debian.org/debian/ etch main non-free contrib
     34All of this was to "prep" the image for a build of the gnu-radio software by source. There is no source package for it, we have to check it out from svn. (note: this required installing ''subversion'' package).
    3035
     36Running
     37{{{
     38svn co http://gnuradio.org/svn/gnuradio/branches/releases/3.1 gnuradio
     39}}}
     40
     41yeilds a large download and a gnuradio directory. Hopefully with all the dep building of prior this should be a make / make install simple setup.
     42
     43First running ./bootstrap required automake, that we didn't have. After apt-getting the ''automake'' package and all its dependencies, ./bootstrap chugs along. ''' Note: this take a while, and throws a bunch of perl warnings'''
     44
     45