blob: ca13ba141c9381a00c96126e0c3e121a65328e13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/bin/sh
ECHO=`which echo`
BUILDDIR="../../build"
FIRST_TIME=0
cd layers/openembedded-core/
if [ ! -f ${BUILDDIR}/conf/local.conf ]; then
FIRST_TIME=1
fi
. ./oe-init-build-env ${BUILDDIR}
echo ""
echo "Toradex targets are:"
echo " angstrom-lxde-image"
echo " console-tdx-image"
echo " angstrom-qt-x11-image"
if [ $FIRST_TIME -eq 1 ]; then
mkdir -p conf
cp ../layers/meta-toradex-demos/buildconf/*.conf conf/
echo ""
$ECHO -e "\033[1mA sample conf/local.conf file has been created"
$ECHO -e "Check and edit the file to adapt to your local needs\033[0m"
echo "The following likely need your attention:"
echo "BB_NUMBER_THREADS, PARALLEL_MAKE, DL_DIR"
fi
|