Changes between Version 3 and Version 4 of Internal/BuildingGNURadioImage
- Timestamp:
- Dec 19, 2008, 7:52:11 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Internal/BuildingGNURadioImage
v3 v4 24 24 25 25 We're going to attempt the debian source install, the apt install doesn't work for the previously mentioned reasons. 26 We installed the ''build-essentials'' package. And we nnow modify the sources list again. 27 we added 28 {{{ 29 deb http://ftp.at.debian.org/debian/ etch main non-free contrib 30 }}} 26 31 27 We installed the ''build-essentials'' package. And we nnow modify the sources list again.32 We 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. 28 33 29 we added deb http://ftp.at.debian.org/debian/ etch main non-free contrib 34 All 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). 30 35 36 Running 37 {{{ 38 svn co http://gnuradio.org/svn/gnuradio/branches/releases/3.1 gnuradio 39 }}} 40 41 yeilds 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 43 First 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