mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-01 07:42: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)
31 lines
588 B
Plaintext
31 lines
588 B
Plaintext
/dts-v1/;
|
|
/plugin/;
|
|
|
|
/{
|
|
compatible = "brcm,bcm2835";
|
|
|
|
// There is no VGA driver module, but we need a platform device
|
|
// node (that doesn't already use pinctrl) to hang the pinctrl
|
|
// reference on - leds will do
|
|
|
|
fragment@0 {
|
|
target = <&leds>;
|
|
__overlay__ {
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&vga666_pins>;
|
|
};
|
|
};
|
|
|
|
fragment@1 {
|
|
target = <&gpio>;
|
|
__overlay__ {
|
|
vga666_pins: vga666_pins {
|
|
brcm,pins = <2 3 4 5 6 7 8 9 10 11 12
|
|
13 14 15 16 17 18 19 20 21>;
|
|
brcm,function = <6>; /* alt2 */
|
|
brcm,pull = <0>; /* no pull */
|
|
};
|
|
};
|
|
};
|
|
};
|