blob: 76cb016f223548a29048b87673a8e7c01753ed6f (
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
|
cat <<EOF >> ${BUILDDIR}/conf/bblayers.conf
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# fragment {
# ${METADIR}/meta-agl/templates/feature/agl-sota/50_setup.sh
#
EOF
case ${MACHINE} in
"qemux86-64")
echo "BBLAYERS =+ \"\${METADIR}/external/meta-updater-qemux86-64\"" >> ${BUILDDIR}/conf/bblayers.conf;;
"raspberrypi4")
echo "BBLAYERS =+ \"\${METADIR}/external/meta-updater-raspberrypi\"" >> ${BUILDDIR}/conf/bblayers.conf;;
*)
echo "#No extra SOTA feature layer for MACHINE ${MACHINE}" >> ${BUILDDIR}/conf/bblayers.conf;;
esac
cat <<EOF >> ${BUILDDIR}/conf/bblayers.conf
#
# }
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
EOF
|