From bc6890872cc4871c8cbe883244cef042befabd3c Mon Sep 17 00:00:00 2001 From: Pierrick Curt Date: Fri, 23 Aug 2024 16:53:44 +0200 Subject: [PATCH] rpi-base: build uart dts overlays by default We need the uart dts overlays to enable a specific uart peripheral. For example if you use the disable-bt overlay, you have to enable the uart0 dts overlay to be able to use uart0 peripheral. Signed-off-by: Pierrick Curt --- conf/machine/include/rpi-base.inc | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/conf/machine/include/rpi-base.inc b/conf/machine/include/rpi-base.inc index b436e15a..adadc2b6 100644 --- a/conf/machine/include/rpi-base.inc +++ b/conf/machine/include/rpi-base.inc @@ -59,6 +59,17 @@ RPI_KERNEL_DEVICETREE_OVERLAYS ?= " \ overlays/pps-gpio.dtbo \ overlays/rpi-ft5406.dtbo \ overlays/rpi-poe.dtbo \ + overlays/uart0.dtbo \ + overlays/uart0-pi5.dtbo \ + overlays/uart1.dtbo \ + overlays/uart1-pi5.dtbo \ + overlays/uart2.dtbo \ + overlays/uart2-pi5.dtbo \ + overlays/uart3.dtbo \ + overlays/uart3-pi5.dtbo \ + overlays/uart4.dtbo \ + overlays/uart4-pi5.dtbo \ + overlays/uart5.dtbo \ overlays/vc4-fkms-v3d.dtbo \ overlays/vc4-fkms-v3d-pi4.dtbo \ overlays/vc4-kms-v3d.dtbo \