Changes between Version 7 and Version 8 of GettingStartedWithEmbeddedSDR

Show
Ignore:
Timestamp:
02/04/08 15:34:12 (5 years ago)
Author:
balister
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GettingStartedWithEmbeddedSDR

    v7 v8  
    1 These need updating. 
    21 
    3 This will get you started building the embedded SDR software. Further additions, including building OSSIE are in development. The following steps should generate all the files needed to turn an OSK into a SCA Radio. 
     2This will get you started building the embedded SDR software. Further additions, including building OSSIE are in development. The following steps should generate all the files needed to turn an OSK into a SCA Radio. Even if you are not using the OSK, do the console-image build for the OSK, if you have a problem, I am familiar with that build and can help solve your problem. 
    43 
    54 * Download and install [http://www.openembedded.org/wiki/GettingStarted Open Embedded Getting Started]. 
     
    1110 * Read about BB collections in the bitbake manual 
    1211 * The bitbake collection for OSSIE is here: http://trac.geekisp.com/opensdr/browser/OE/ossie_collection 
     12 
     13 * Check out the OSSIE collection for Open Embedded with: 
     14{{{ 
     15svn co svn://svn.geekisp.com/opensdr/OE/ossie_collection 
     16}}} 
     17 * Add the following lines to your {{{local.conf}}} 
     18{{{ 
     19BBFILES = "${OEDIR}/org.openembedded.dev/packages/*/*.bb ${OEDIR}/ossie_collection/packages/*/*.bb" 
     20 
     21BBFILE_COLLECTIONS = "upstream ossie" 
     22 
     23BBFILE_PATTERN_upstream = "^${OEDIR}/org.openembedded.dev/packages" 
     24BBFILE_PRIORITY_upstream = "5" 
     25 
     26BBFILE_PATTERN_ossie = "^${OEDIR}/ossie/packages" 
     27BBFILE_PRIORITY_ossie = "10" 
     28}}} 
     29 * Add {{{${OEDIR}/ossie_collection}}} to your BBPATH environment variable 
     30 * Run {{{bitbake ossie-image}}} 
    1331 
    1432Contact PhilipBalister for help. I am usually in #edev, #davinci, #oe on freenode as {{{Crofton}}}, please ask questions in the appropriate channel.