22 lines
312 B
Plaintext
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
|
||
|
|