Changes between Version 29 and Version 30 of CSPFL_OpenEmbedded
- Timestamp:
- 11/06/09 12:14:05 (2 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CSPFL_OpenEmbedded
v29 v30 76 76 77 77 == Setup the build environment == 78 79 The following source script can be used to set up the OE build environment. 78 The 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: 80 79 81 80 {{{ 82 81 #!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" 82 export BBPATH=/openembedded:/openembedded/oswald-oe:/openembedded/oswald-oe-overlay 105 83 }}} 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.108 84 109 85 Don't forget to change the paths as necessary for your setup.
