mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-26 17:01:14 +00:00
7d7aa2fd92
This change makes the names of Broadcom targets consistent by using the common notation based on SoC/CPU ID (which is used internally anyway), bcmXXXX instead of brcmXXXX. This is even used for target TITLE in make menuconfig already, only the short target name used brcm so far. Despite, since subtargets range from bcm2708 to bcm2711, it seems appropriate to use bcm27xx instead of bcm2708 (again, as already done for BOARDNAME). This also renames the packages brcm2708-userland and brcm2708-gpu-fw. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de> Acked-by: Álvaro Fernández Rojas <noltari@gmail.com>
34 lines
950 B
Diff
34 lines
950 B
Diff
From c0c9a631e7ca58cc31aafb14920c559552d3b810 Mon Sep 17 00:00:00 2001
|
|
From: Phil Elwell <phil@raspberrypi.org>
|
|
Date: Mon, 29 Oct 2018 10:38:31 +0000
|
|
Subject: [PATCH] overlays: pi3-disable-bt: Clear out bt_pins node
|
|
|
|
The pi3-disable-bt overlay does not (and cannot) delete the bt_pins
|
|
node, but emptying its properties (including brcm,pins) is a way of
|
|
signalling to the hciuart systemd service that Bluetooth has been
|
|
disabled.
|
|
|
|
Signed-off-by: Phil Elwell <phil@raspberrypi.org>
|
|
---
|
|
arch/arm/boot/dts/overlays/pi3-disable-bt-overlay.dts | 9 +++++++++
|
|
1 file changed, 9 insertions(+)
|
|
|
|
--- a/arch/arm/boot/dts/overlays/pi3-disable-bt-overlay.dts
|
|
+++ b/arch/arm/boot/dts/overlays/pi3-disable-bt-overlay.dts
|
|
@@ -37,6 +37,15 @@
|
|
};
|
|
|
|
fragment@3 {
|
|
+ target = <&bt_pins>;
|
|
+ __overlay__ {
|
|
+ brcm,pins;
|
|
+ brcm,function;
|
|
+ brcm,pull;
|
|
+ };
|
|
+ };
|
|
+
|
|
+ fragment@4 {
|
|
target-path = "/aliases";
|
|
__overlay__ {
|
|
serial0 = "/soc/serial@7e201000";
|