meta-bbb: initial commit

Signed-off-by: Thomas Klaehn <tkl@blackfinn.de>
This commit is contained in:
2017-06-13 14:55:28 +02:00
commit b40f32de74
10 changed files with 393 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
# 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