16 lines
332 B
Plaintext
16 lines
332 B
Plaintext
if [ -z "$DISTRO" ]; then
|
|
echo "No distro selected. Please source a helper script (env.*)"
|
|
fi
|
|
|
|
if [ -z "$MACHINE" ]; then
|
|
. ./machine_select
|
|
fi
|
|
|
|
echo Building for machine $MACHINE, distro: $DISTRO
|
|
|
|
export DISTRO
|
|
export MACHINE
|
|
export OSTREE_OSNAME=nm-linux
|
|
|
|
. ./openembedded-core/oe-init-build-env build$BUILD_FOLDER_APPEND
|