From 825772aadcbfb38a8e3d26a43d35d2bcd3b0f537 Mon Sep 17 00:00:00 2001 From: Laurent Bonnans Date: Tue, 12 Nov 2019 18:11:38 +0100 Subject: Fix uart output on raspberrypi3 The broadcom firmware now needs device trees to be present in/boot to set it up. Signed-off-by: Laurent Bonnans --- classes/sota_raspberrypi.bbclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/classes/sota_raspberrypi.bbclass b/classes/sota_raspberrypi.bbclass index c901a70..d5d89a9 100644 --- a/classes/sota_raspberrypi.bbclass +++ b/classes/sota_raspberrypi.bbclass @@ -44,9 +44,9 @@ IMAGE_BOOT_FILES_sota = "bcm2835-bootfiles/* \ " # OSTree puts its own boot.scr to bcm2835-bootfiles -# raspberrypi4 needs dtb in /boot partition so that they can be read by the -# firmware -IMAGE_BOOT_FILES_append_sota_raspberrypi4 = "${@make_dtb_boot_files(d)}" +# rpi4 and recent rpi3 firmwares needs dtb in /boot partition +# so that they can be read by the firmware +IMAGE_BOOT_FILES_append_sota = "${@make_dtb_boot_files(d)}" # Just the overlays that will be used should be listed KERNEL_DEVICETREE_raspberrypi2_sota ?= " bcm2709-rpi-2-b.dtb " -- cgit v1.2.3-54-g00ecf From fa24b716dd21b874975ae8e1a0978a3356c94dc6 Mon Sep 17 00:00:00 2001 From: Laurent Bonnans Date: Wed, 13 Nov 2019 17:58:17 +0100 Subject: Fix bug at aktualizr startup on rpi/arm By bumping aktualizr, see: https://github.com/advancedtelematic/aktualizr/pull/1444 Signed-off-by: Laurent Bonnans --- recipes-sota/aktualizr/aktualizr_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-sota/aktualizr/aktualizr_git.bb b/recipes-sota/aktualizr/aktualizr_git.bb index 8e129e1..cef66ab 100644 --- a/recipes-sota/aktualizr/aktualizr_git.bb +++ b/recipes-sota/aktualizr/aktualizr_git.bb @@ -30,7 +30,7 @@ SRC_URI = " \ SRC_URI[garagesign.md5sum] = "de0877ecb693fd48ec11052e51b0ff1a" SRC_URI[garagesign.sha256sum] = "cf25759574c9c1206835daeaf6fc345f6db7b5ccdb95fb828c86d7451f78f0aa" -SRCREV = "9677f025abbb958ad36d4b58cae1dd4fe5750cf0" +SRCREV = "1c2f495e47a41cc7c9ad969ff42496208ad6b23a" BRANCH ?= "master" S = "${WORKDIR}/git" -- cgit v1.2.3-54-g00ecf