mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
* Fix wifi drivers on kernel v6.16 These patches can get deleted after merged upstream. * initial commit * fix header * remove ssv6051 driver --------- Co-authored-by: amazingfate <liujianfeng1994@gmail.com>
21 lines
331 B
Plaintext
21 lines
331 B
Plaintext
// Definitions for w1-gpio module (without external pullup)
|
|
/dts-v1/;
|
|
/plugin/;
|
|
|
|
/ {
|
|
compatible = "rockchip,rk3399";
|
|
|
|
fragment@0 {
|
|
target-path = "/";
|
|
__overlay__ {
|
|
|
|
w1: onewire@0 {
|
|
compatible = "w1-gpio";
|
|
pinctrl-names = "default";
|
|
gpios = <&gpio1 4 0 0xae>; // GPIO1_A4
|
|
status = "okay";
|
|
};
|
|
};
|
|
};
|
|
};
|