19 lines
411 B
Plaintext
19 lines
411 B
Plaintext
set -a # exports all variables
|
|
|
|
# exporting DISTRO*
|
|
DISTRO_OSTREE=$DISTRO_OSTREE
|
|
DISTRO_TYPE=$DISTRO_TYPE
|
|
DISTRO=netmodule-linux$DISTRO_OSTREE$DISTRO_TYPE
|
|
|
|
if [ -z "$MACHINE" ]; then
|
|
. ./machine_select
|
|
fi
|
|
|
|
MACHINE_TYPE=$(echo $MACHINE | rev | cut -f2- -d- | rev)
|
|
|
|
echo Building for machine $MACHINE, distro: $DISTRO
|
|
|
|
OSTREE_OSNAME=nm-linux
|
|
|
|
. ./openembedded-core/oe-init-build-env build$BUILD_FOLDER_APPEND
|