25 lines
563 B
Plaintext
25 lines
563 B
Plaintext
if [ -z "$DISTRO" ]; then
|
|
echo "No distro selected. Please source a helper script (env/distro/*)"
|
|
return
|
|
fi
|
|
|
|
if [ -z "$MACHINE" ]; then
|
|
echo "No machine selected. Please source a helper script (env/machine/*)"
|
|
return
|
|
fi
|
|
|
|
echo
|
|
echo Build parameters:
|
|
printf "\tMACHINE = $MACHINE\n"
|
|
printf "\tDISTRO = $DISTRO\n"
|
|
echo
|
|
|
|
export DISTRO
|
|
export MACHINE
|
|
export OSTREE_OSNAME=nm-linux
|
|
|
|
# Moving back to top yocto directory (env/..)
|
|
env_path=${BASH_SOURCE:-$0}
|
|
cd $(dirname $env_path)/..
|
|
source openembedded-core/oe-init-build-env build$BUILD_FOLDER_APPEND
|