From 6cdd659c94cbe4b75565eb264db31453fc45b3b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Holz?= Date: Mon, 13 Jan 2025 15:48:04 +0100 Subject: [PATCH] Meta: Correct the Pi 3 devicetree blob path ee891462b84 accidentally changed the path to the Pi 3 devicetree blob to an incorrect one. --- Meta/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meta/run.py b/Meta/run.py index 87bddcfb7ca..d007e213b1f 100755 --- a/Meta/run.py +++ b/Meta/run.py @@ -769,7 +769,7 @@ def set_up_machine_devices(config: Configuration): config.audio_devices = [] caches_path = BUILD_DIRECTORY.parent / "caches" - dtb_path = str(caches_path / "bcm2837-rpi-3-b.dtb") + dtb_path = str(caches_path / "bcm2710-rpi-3-b.dtb") if config.machine_type == MachineType.RaspberryPi4B: dtb_path = str(caches_path / "bcm2711-rpi-4-b.dtb")