Skip to content
Snippets Groups Projects
Commit 63b451ca authored by Oleksii Kutuzov's avatar Oleksii Kutuzov
Browse files

Draft: Changes for QCS6490

parent dd68e88c
Branches add-mtk
No related tags found
No related merge requests found
# POKY_BBLAYERS_CONF_VERSION is increased each time build/conf/bblayers.conf
# changes incompatibly
POKY_BBLAYERS_CONF_VERSION = "2"
BBPATH = "${TOPDIR}"
BSPDIR := "${@os.path.abspath(os.path.dirname(d.getVar('FILE', True)) + '/../..')}"
BBFILES ?= ""
BBLAYERS = " \
${BSPDIR}/sources/poky_qcom/meta \
${BSPDIR}/sources/poky_qcom/meta-poky \
${BSPDIR}/sources/meta-arm/meta-arm \
${BSPDIR}/sources/meta-arm/meta-arm-toolchain \
${BSPDIR}/sources/meta-security_qcom \
${BSPDIR}/sources/meta-selinux \
${BSPDIR}/sources/meta-virtualization \
\
${BSPDIR}/sources/meta-openembedded/meta-filesystems \
${BSPDIR}/sources/meta-openembedded/meta-multimedia \
${BSPDIR}/sources/meta-openembedded/meta-networking \
${BSPDIR}/sources/meta-openembedded/meta-oe \
${BSPDIR}/sources/meta-openembedded/meta-python \
${BSPDIR}/sources/meta-openembedded/meta-webserver \
${BSPDIR}/sources/meta-openembedded/meta-perl \
${BSPDIR}/sources/meta-openembedded/meta-gnome \
${BSPDIR}/sources/meta-python2 \
\
${BSPDIR}/sources/meta-rauc \
\
${BSPDIR}/sources/meta-qt5 \
${BSPDIR}/sources/meta-seconorth-distro \
${BSPDIR}/sources/meta-seconorth-qcom \
\
${BSPDIR}/sources/meta-qcom-hwe \
${BSPDIR}/sources/meta-qcom \
"
\ No newline at end of file
......@@ -223,6 +223,9 @@ if "$build_dir_setup_enabled"; then
seco-genio700|seco-genio510)
BBLAYERS=bblayers_mtk.conf
;;
seco-qcm6490)
BBLAYERS=bblayers_qcom.conf
;;
seco-mx6|seco-mx6ull|*) # Also default
BBLAYERS=bblayers.conf
;;
......@@ -333,6 +336,16 @@ if "$build_dir_setup_enabled"; then
} >> conf/local.conf
fi
# MediTek Genio 700 specific settings
if [ "$MACHINE" = "seco-qcm*" ]; then
{
echo
echo 'IMAGE_FSTYPES:append = " tar.xz"'
echo 'INHERIT += "rm_work"'
echo
} >> conf/local.conf
fi
for s in $HOME/.oe $HOME/.yocto; do
if [ -e "$s/site.conf" ]; then
echo "Linking $s/site.conf to conf/site.conf"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment