summaryrefslogtreecommitdiff
path: root/contrib/multitech/env-oe.sh
blob: 17e37a786a581c60ce97fac5e056a1ab37e1bab0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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}/build:${OETREE}/openembedded
export BB_ENV_EXTRAWHITE="MACHINE DISTRO OETREE ANGSTROM_MODE ANGSTROMLIBC LIBC TFTPBOOT_DIR"