Changes between Version 26 and Version 27 of CSPFL_OpenEmbedded

Show
Ignore:
Author:
hardert (IP: 67.169.210.177)
Timestamp:
11/05/09 20:50:16 (3 weeks ago)
Comment:

Various updates and clarifications

Legend:

Unmodified
Added
Removed
Modified
  • CSPFL_OpenEmbedded

    v26 v27  
    7171The OE variable sets the base !OpenEmbedded directory, DL_DIR is where downloaded files are placed, OE_DIR is the location of the OSWALD OE repository directory, and OVERLAY_DIR is the OSWALD OE overlay repository directory. 
    7272 
     73You should probably also configure the BB_NUMBER_THREADS, PARALLEL_MAKE, and ASSUME_PROVIDED specifically for your environment. BB_NUMBER_THREADS defines the maximum number of tasks that bitbake can run simultaneously while PARALLEL_MAKE defines the number of threads used by make to parallelize the build process. Finally, ASSUME_PROVIDED defines packages available on the host system which are used by OE so they don't need to be built within the OE environment. If you don't recognize any of the package names you should consider commenting out that part of the config file so OE builds everything. 
     74 
    7375== Setup the build environment == 
    7476 
    101103}}} 
    102104 
     105A more simplistic setup is to just set the BBPATH variable as seen in the script above in your shell's init file. 
     106 
    103107Don't forget to change the paths as necessary for your setup. 
    104108 
    109113{{{ 
    110114#!sh 
    111 $ bitbake oswald-image 
     115$ bitbake radix-image 
    112116}}} 
    113117 
    144148 
    145149== Set the BBPATH variable == 
    146 For the simplest setup, you can just export the BBPATH variable in your shell of choice or you can use a script similar to the one found above. 
     150For the simplest setup, you can just export the BBPATH variable in your shell of choice. Otherwise, you can use a script similar to the one found above. 
    147151 
    148152== Starting building == 
    149 If you setup the environment correctly, you should be able to start building the standard oswald image or other packages. 
     153If you setup the environment correctly, you should be able to start building the standard Radix image or other packages. 
    150154 
    151155----