meta-bbb/buildconf/bbb-init-build-env
Thomas Klaehn b40f32de74 meta-bbb: initial commit
Signed-off-by: Thomas Klaehn <tkl@blackfinn.de>
2017-06-13 14:55:28 +02:00

22 lines
312 B
Plaintext

# Defaults
OPT_M=beaglebone
BUILD_DIR=build
#
# MAIN
#
OPTIND=1
shift $((OPTIND-1))
for NOPTARG in $*; do
BUILD_DIR="$NOPTARG"
done
export TEMPLATECONF="meta-bbb/buildconf"
export MACHINE=$OPT_M
rm -f build/conf/bblayers.conf \
build/conf/templateconf.cfg
source poky/oe-init-build-env $BUILD_DIR
return 0