75f66813e0
Rationale: Reduces attack surface on kernel devs opening the links for MITM as HTTPS traffic is much harder to manipulate. Deterministic algorithm: For each file: If not .svg: For each line: If doesn't contain `\bxmlns\b`: For each link, `\bhttp://[^# \t\r\n]*(?:\w|/)`: If neither `\bgnu\.org/license`, nor `\bmozilla\.org/MPL\b`: If both the HTTP and HTTPS versions return 200 OK and serve the same content: Replace HTTP with HTTPS. Signed-off-by: Alexander A. Klimov <grandmaster@al2klimov.de> Signed-off-by: Tony Lindgren <tony@atomide.com>
48 lines
1.1 KiB
Plaintext
48 lines
1.1 KiB
Plaintext
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Copyright (C) 2012 Texas Instruments Incorporated - https://www.ti.com/
|
|
*/
|
|
|
|
/*
|
|
* VScom OnRISC
|
|
* http://www.vscom.de
|
|
*/
|
|
|
|
/*#include "am33xx.dtsi"*/
|
|
|
|
/ {
|
|
leds {
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&user_leds>;
|
|
|
|
compatible = "gpio-leds";
|
|
|
|
power {
|
|
label = "onrisc:red:power";
|
|
linux,default-trigger = "default-on";
|
|
gpios = <&gpio3 0 GPIO_ACTIVE_LOW>;
|
|
default-state = "on";
|
|
};
|
|
wlan {
|
|
label = "onrisc:blue:wlan";
|
|
gpios = <&gpio0 16 GPIO_ACTIVE_HIGH>;
|
|
default-state = "off";
|
|
};
|
|
app {
|
|
label = "onrisc:green:app";
|
|
gpios = <&gpio0 17 GPIO_ACTIVE_HIGH>;
|
|
default-state = "off";
|
|
};
|
|
};
|
|
};
|
|
|
|
&am33xx_pinmux {
|
|
user_leds: pinmux_user_leds {
|
|
pinctrl-single,pins = <
|
|
AM33XX_PADCONF(AM335X_PIN_MII1_COL, PIN_OUTPUT_PULLDOWN, MUX_MODE7) /* mii1_col.gpio3_0 PWR LED */
|
|
AM33XX_PADCONF(AM335X_PIN_MII1_TXD3, PIN_OUTPUT_PULLDOWN, MUX_MODE7) /* mii1_txd3.gpio0_16 WLAN LED */
|
|
AM33XX_PADCONF(AM335X_PIN_MII1_TXD2, PIN_OUTPUT_PULLDOWN, MUX_MODE7) /* mii1_txd2.gpio0_17 APP LED */
|
|
>;
|
|
};
|
|
};
|