2024-09-09 08:57:42 +00:00
|
|
|
# set_bb_env.sh
|
|
|
|
# Define macros for build targets.
|
|
|
|
# Generate bblayers.conf from get_bblayers.py.
|
|
|
|
# Some convenience macros are defined to save some typing.
|
|
|
|
# Set the build environement
|
2024-09-09 08:52:07 +00:00
|
|
|
if [[ ! $(readlink $(which sh)) =~ bash ]]
|
|
|
|
then
|
|
|
|
echo ""
|
2024-09-09 08:57:42 +00:00
|
|
|
echo "### ERROR: Please Change your /bin/sh symlink to point to bash. ### "
|
2024-09-09 08:52:07 +00:00
|
|
|
echo ""
|
|
|
|
echo "### sudo ln -sf /bin/bash /bin/sh ### "
|
|
|
|
echo ""
|
2024-09-09 08:57:42 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# The SHELL variable also needs to be set to /bin/bash otherwise the build
|
|
|
|
# will fail, use chsh to change it to bash.
|
|
|
|
if [[ ! $SHELL =~ bash ]]
|
|
|
|
then
|
|
|
|
echo ""
|
|
|
|
echo "### ERROR: Please Change your shell to bash using chsh. ### "
|
|
|
|
echo ""
|
|
|
|
echo "### Make sure that the SHELL variable points to /bin/bash ### "
|
|
|
|
echo ""
|
|
|
|
exit 1
|
2024-09-09 08:52:07 +00:00
|
|
|
fi
|
2024-09-09 08:57:42 +00:00
|
|
|
|
2024-09-09 08:52:07 +00:00
|
|
|
umask 022
|
|
|
|
unset MACHINE
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
# OE doesn't want a set-gid directory for its tmpdir
|
|
|
|
BT="./build/tmp-glibc"
|
|
|
|
if [ ! -d ${BT} ]
|
|
|
|
then
|
|
|
|
mkdir -m u=rwx,g=rx,g-s,o= ${BT}
|
|
|
|
elif [ -g ${BT} ]
|
|
|
|
then
|
|
|
|
chmod -R g-s ${BT}
|
|
|
|
fi
|
|
|
|
unset BT
|
|
|
|
|
2024-09-09 08:52:07 +00:00
|
|
|
# Find where the global conf directory is...
|
|
|
|
scriptdir="$(dirname "${BASH_SOURCE}")"
|
|
|
|
# Find where the workspace is...
|
|
|
|
WS=$(readlink -f $scriptdir/../../..)
|
|
|
|
|
|
|
|
# Dynamically generate our bblayers.conf since we effectively can't whitelist
|
|
|
|
# BBLAYERS (by OE-Core class policy...Bitbake understands it...) to support
|
|
|
|
# dynamic workspace layer functionality.
|
|
|
|
python $scriptdir/get_bblayers.py ${WS}/oe-core \"meta*\" > $scriptdir/bblayers.conf
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
# Convienence function provided for the QuIC provided OE Linux distro.
|
|
|
|
build9640() {
|
|
|
|
export MACHINE=mdm9640
|
2024-09-09 08:52:07 +00:00
|
|
|
cdbitbake mdm-image && \
|
|
|
|
cdbitbake mdm-recovery-image
|
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
buildperf9640() {
|
|
|
|
export MACHINE=mdm9640-perf
|
2024-09-09 08:52:07 +00:00
|
|
|
cdbitbake mdm-perf-image
|
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
buildboth9640() {
|
|
|
|
build9640
|
|
|
|
buildperf9640
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
build9607() {
|
|
|
|
export MACHINE=mdm9607
|
|
|
|
cdbitbake mdm-image
|
|
|
|
cdbitbake mdm-recovery-image
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
buildpsm9607() {
|
|
|
|
export MACHINE=mdm9607-psm
|
|
|
|
bitbake -fc cleanall data mcm-core
|
|
|
|
cdbitbake mdm-image
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
buildperf9607() {
|
|
|
|
export MACHINE=mdm9607-perf
|
|
|
|
cdbitbake mdm-perf-image
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
buildboth9607() {
|
|
|
|
build9607
|
|
|
|
buildperf9607
|
|
|
|
buildpsm9607
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
build8009() {
|
|
|
|
export MACHINE=apq8009
|
|
|
|
cdbitbake mdm-image
|
|
|
|
}
|
|
|
|
|
|
|
|
buildperfcalifornium() {
|
|
|
|
export MACHINE=mdmcalifornium-perf
|
|
|
|
cdbitbake mdm-perf-image
|
|
|
|
}
|
|
|
|
buildcalifornium() {
|
|
|
|
export MACHINE=mdmcalifornium
|
|
|
|
cdbitbake mdm-image
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
buildbothcalifornium() {
|
|
|
|
buildcalifornium
|
|
|
|
buildperfcalifornium
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
buildclean() {
|
|
|
|
set -x
|
|
|
|
cd ${WS}/oe-core/build
|
2024-09-09 08:57:42 +00:00
|
|
|
|
|
|
|
rm -rf bitbake.lock pseudodone sstate-cache tmp-glibc/* cache && cd - || cd -
|
2024-09-09 08:52:07 +00:00
|
|
|
set +x
|
|
|
|
}
|
|
|
|
|
|
|
|
cdbitbake() {
|
2024-09-09 08:57:42 +00:00
|
|
|
local ret=0
|
2024-09-09 08:52:07 +00:00
|
|
|
cd ${WS}/oe-core/build
|
2024-09-09 08:57:42 +00:00
|
|
|
bitbake $@ && cd - || ret=$? && cd -
|
|
|
|
return $ret
|
|
|
|
}
|
|
|
|
|
|
|
|
rebake() {
|
|
|
|
cdbitbake -c cleanall $@ && \
|
|
|
|
cdbitbake $@
|
2024-09-09 08:52:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Yocto/OE-core works a bit differently than OE-classic so we're
|
2024-09-09 08:57:42 +00:00
|
|
|
# going to source the OE build environment setup script they provided.
|
2024-09-09 08:52:07 +00:00
|
|
|
# This will dump the user in ${WS}/yocto/build, ready to run the
|
|
|
|
# convienence function or straight up bitbake commands.
|
|
|
|
. ${WS}/oe-core/oe-init-build-env
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
# Let bitbake use the following env-vars as if they were pre-set bitbake ones.
|
|
|
|
# (BBLAYERS is explicitly blocked from this within OE-Core itself, though...)
|
2024-09-09 08:52:07 +00:00
|
|
|
# oe-init-build-env calls oe-buildenv-internal which sets
|
|
|
|
# BB_ENV_EXTRAWHITE, append our vars to the list
|
|
|
|
export BB_ENV_EXTRAWHITE="${BB_ENV_EXTRAWHITE} DL_DIR"
|
2024-09-09 08:57:42 +00:00
|
|
|
|
|
|
|
# TP-LINK build env
|
|
|
|
. ${WS}/oe-core/build/conf/tp_set_bb_env.sh
|