Skip to content

Commit fb01eb3

Browse files
Al2Klimovnsekhar
authored andcommitted
ARM: davinci: Replace HTTP links with HTTPS ones
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 <[email protected]> [[email protected]: drop obsolete hawkboard.org URL completeley fixup subject line prefix] Signed-off-by: Sekhar Nori <[email protected]>
1 parent b3a9e3b commit fb01eb3

File tree

13 files changed

+13
-15
lines changed

13 files changed

+13
-15
lines changed

arch/arm/boot/dts/da850-evm.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
* Device Tree for DA850 EVM board
44
*
5-
* Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
5+
* Copyright (C) 2012 Texas Instruments Incorporated - https://www.ti.com/
66
*/
77
/dts-v1/;
88
#include "da850.dtsi"

arch/arm/mach-davinci/Kconfig

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,15 +201,13 @@ config MACH_MITYOMAPL138
201201
help
202202
Say Y here to select the Critical Link MityDSP-L138/MityARM-1808
203203
System on Module. Information on this SoM may be found at
204-
http://www.mitydsp.com
204+
https://www.mitydsp.com
205205

206206
config MACH_OMAPL138_HAWKBOARD
207207
bool "TI AM1808 / OMAPL-138 Hawkboard platform"
208208
depends on ARCH_DAVINCI_DA850
209209
help
210210
Say Y here to select the TI AM1808 / OMAPL-138 Hawkboard platform .
211-
Information of this board may be found at
212-
http://www.hawkboard.org/
213211

214212
config DAVINCI_MUX
215213
bool "DAVINCI multiplexing support"

arch/arm/mach-davinci/board-da850-evm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* TI DA850/OMAP-L138 EVM board
33
*
4-
* Copyright (C) 2009 Texas Instruments Incorporated - http://www.ti.com/
4+
* Copyright (C) 2009 Texas Instruments Incorporated - https://www.ti.com/
55
*
66
* Derived from: arch/arm/mach-davinci/board-da830-evm.c
77
* Original Copyrights follow:

arch/arm/mach-davinci/board-mityomapl138.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Critical Link MityOMAP-L138 SoM
33
*
4-
* Copyright (C) 2010 Critical Link LLC - http://www.criticallink.com
4+
* Copyright (C) 2010 Critical Link LLC - https://www.criticallink.com
55
*
66
* This file is licensed under the terms of the GNU General Public License
77
* version 2. This program is licensed "as is" without any warranty of

arch/arm/mach-davinci/board-neuros-osd2.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ static __init void davinci_ntosd2_init(void)
214214
* Mux the pins to be GPIOs, VLYNQEN is already done at startup.
215215
* The AEAWx are five new AEAW pins that can be muxed by separately.
216216
* They are a bitmask for GPIO management. According TI
217-
* documentation (http://www.ti.com/lit/gpn/tms320dm6446) to employ
217+
* documentation (https://www.ti.com/lit/gpn/tms320dm6446) to employ
218218
* gpio(10,11,12,13) for leds any combination of bits works except
219219
* four last. So we are to reset all five.
220220
*/

arch/arm/mach-davinci/board-omapl138-hawk.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Initial code: Syed Mohammed Khasim
55
*
6-
* Copyright (C) 2009 Texas Instruments Incorporated - http://www.ti.com
6+
* Copyright (C) 2009 Texas Instruments Incorporated - https://www.ti.com
77
*
88
* This file is licensed under the terms of the GNU General Public License
99
* version 2. This program is licensed "as is" without any warranty of

arch/arm/mach-davinci/cpuidle.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
* CPU idle for DaVinci SoCs
44
*
5-
* Copyright (C) 2009 Texas Instruments Incorporated. http://www.ti.com/
5+
* Copyright (C) 2009 Texas Instruments Incorporated. https://www.ti.com/
66
*
77
* Derived from Marvell Kirkwood CPU idle code
88
* (arch/arm/mach-kirkwood/cpuidle.c)

arch/arm/mach-davinci/cpuidle.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* TI DaVinci cpuidle platform support
33
*
4-
* 2009 (C) Texas Instruments, Inc. http://www.ti.com/
4+
* 2009 (C) Texas Instruments, Inc. https://www.ti.com/
55
*
66
* This file is licensed under the terms of the GNU General Public License
77
* version 2. This program is licensed "as is" without any warranty of any

arch/arm/mach-davinci/da850.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* TI DA850/OMAP-L138 chip specific setup
33
*
4-
* Copyright (C) 2009 Texas Instruments Incorporated - http://www.ti.com/
4+
* Copyright (C) 2009 Texas Instruments Incorporated - https://www.ti.com/
55
*
66
* Derived from: arch/arm/mach-davinci/da830.c
77
* Original Copyrights follow:

arch/arm/mach-davinci/da8xx-dt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: GPL-2.0-only
22
/*
3-
* Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
3+
* Copyright (C) 2012 Texas Instruments Incorporated - https://www.ti.com/
44
*
55
* Modified from mach-omap/omap2/board-generic.c
66
*/

0 commit comments

Comments
 (0)