Changes between Version 29 and Version 30 of CSPFL_OpenEmbedded

Show
Ignore:
Author:
hardert (IP: 67.169.210.177)
Timestamp:
11/06/09 12:14:05 (2 weeks ago)
Comment:

Simplify instructions

Legend:

Unmodified
Added
Removed
Modified
  • CSPFL_OpenEmbedded

    v29 v30  
    7676 
    7777== Setup the build environment == 
    78  
    79 The following source script can be used to set up the OE build environment. 
     78The easiest way to setup the build environment is to set the BBPATH variable in your shell's init file. For example, use the following line: 
    8079 
    8180{{{ 
    8281#!sh 
    83 BBPATH=/OE/:/OE/overlay/:/OE/openembedded/ 
    84 PKGDIR=/OE/overlay/ 
    85 DL_DIR=/OE/downloads 
    86  
    87 if [ -z ${ORG_PATH} ] ; then 
    88         ORG_PATH=${PATH} 
    89         export ORG_PATH 
    90 fi 
    91  
    92 if [ -z ${ORG_LD_LIBRARY_PATH} ] ; then 
    93         ORG_LD_LIBRARY_PATH=${LD_LIBRARY_PATH} 
    94         export ORG_LD_LIBRARY_PATH 
    95 fi 
    96  
    97 PATH=/OE/bitbake-1.8.12/bin:${ORG_PATH} 
    98  
    99 LD_LIBRARY_PATH= 
    100 export PATH LD_LIBRARY_PATH BBPATH 
    101 export LANG=C 
    102 export BB_ENV_EXTRAWHITE="MACHINE DISTRO ANGSTROM_MODE ANGSTROMLIBC" 
    103  
    104 echo "Altered environment for Bitbake+OE+RADIX" 
     82export BBPATH=/openembedded:/openembedded/oswald-oe:/openembedded/oswald-oe-overlay 
    10583}}} 
    106  
    107 A more simplistic setup is to just set the BBPATH variable as seen in the script above in your shell's init file. 
    10884 
    10985Don't forget to change the paths as necessary for your setup.