diff options
author | Jesse Gilles <jgilles@multitech.com> | 2011-06-28 15:16:57 -0500 |
---|---|---|
committer | Jesse Gilles <jgilles@multitech.com> | 2011-06-28 15:16:57 -0500 |
commit | b23d1d80a23e8ce1910ba7c5006a4fddf3325c7d (patch) | |
tree | 40a273fff1fab26a90870668e232b4d79b5ea908 /env-oe.sh |
initial work on multitech bitbake layer for CoreCDP
Diffstat (limited to 'env-oe.sh')
-rw-r--r-- | env-oe.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/env-oe.sh b/env-oe.sh new file mode 100644 index 0000000..eb5e4ca --- /dev/null +++ b/env-oe.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env bash + +export OETREE=$(pwd) + +if [[ ! "${PATH}" =~ ${OETREE}/bitbake/bin ]]; then + export PATH=${OETREE}/bitbake/bin:${PATH} +fi + +# define if you wish to create soft links to the image in the tftpboot dir +#export TFTPBOOT_DIR=/tftpboot + +export BBPATH=${OETREE} +export BB_ENV_EXTRAWHITE="MACHINE DISTRO OETREE ANGSTROM_MODE ANGSTROMLIBC LIBC TFTPBOOT_DIR" |