mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-31 15:22:18 +00:00
84ba5b15ac
* Enhance GPIO addon for Noctua Fans for the Qortector upcoming case. This will put PWM signal to real-time. * Fixed RDP not letting a user login if not logged out on Cinnamon release (reported by Crowetic) * Update i2c sensor db * Fixed DRM broadcast over HDMI 2+ * Ease up DHCP security only to prevent Brooklyn blocking routers. * Add possibility to add extra memory for Cinnamon Desktop Release * Fix error message of Software Render mode on Cinnamon Desktop * Add proper offset for HD screens for pixel array *Fixed HDMI jitter for videocore4 GPU * Enable all radios (including Bluetooth)
28 lines
595 B
Plaintext
28 lines
595 B
Plaintext
/dts-v1/;
|
|
/plugin/;
|
|
|
|
/* Pi3 uses a GPIO expander to drive the LEDs which can only be accessed
|
|
from the VPU. There is a special driver for this with a separate DT node,
|
|
which has the unfortunate consequence of breaking the act_led_gpio and
|
|
act_led_activelow dtparams.
|
|
|
|
This overlay changes the GPIO controller back to the standard one and
|
|
restores the dtparams.
|
|
*/
|
|
|
|
/{
|
|
compatible = "brcm,bcm2835";
|
|
|
|
fragment@0 {
|
|
target = <&act_led>;
|
|
frag0: __overlay__ {
|
|
gpios = <&gpio 0 0>;
|
|
};
|
|
};
|
|
|
|
__overrides__ {
|
|
gpio = <&frag0>,"gpios:4";
|
|
activelow = <&frag0>,"gpios:8";
|
|
};
|
|
};
|