diff options
author | Patrick Vacek <patrickvacek@gmail.com> | 2020-03-30 13:36:45 +0200 |
---|---|---|
committer | Patrick Vacek <patrickvacek@gmail.com> | 2020-03-31 08:44:38 +0200 |
commit | 0bf48eb09d48b2f5c805a02546d986fca6a081dc (patch) | |
tree | 0d336b156d2dd5a874bf2bc9e01432151292c9ed /templates/feature/agl-sota/50_setup.sh | |
parent | e55ff95cece475aefbb858d214d8c349d8017951 (diff) |
agl-sota: Extend 50_setup.sh for Raspberry Pi.
Signed-off-by: Patrick Vacek <patrickvacek@gmail.com>
Change-Id: Ifdb2281a9740f9c362aef9ab585959679050826d
Diffstat (limited to 'templates/feature/agl-sota/50_setup.sh')
-rw-r--r-- | templates/feature/agl-sota/50_setup.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/templates/feature/agl-sota/50_setup.sh b/templates/feature/agl-sota/50_setup.sh index c5aeb532d..f209b9442 100644 --- a/templates/feature/agl-sota/50_setup.sh +++ b/templates/feature/agl-sota/50_setup.sh @@ -10,6 +10,8 @@ EOF case ${MACHINE} in "qemux86-64") echo "BBLAYERS =+ \"\${METADIR}/external/meta-updater-qemux86-64\"" >> ${BUILDDIR}/conf/bblayers.conf;; + "raspberrypi3" | "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 |