Skip to content

Commit 78ef553

Browse files
authored
Merge pull request torvalds#214 from zandrey/5.10.x+fslc
Update 5.10.x+fslc to v5.10.7
2 parents d306e6b + a995e24 commit 78ef553

File tree

160 files changed

+1211
-667
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

160 files changed

+1211
-667
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: GPL-2.0
22
VERSION = 5
33
PATCHLEVEL = 10
4-
SUBLEVEL = 6
4+
SUBLEVEL = 7
55
EXTRAVERSION =
66
NAME = Kleptomaniac Octopus
77

@@ -450,7 +450,7 @@ LEX = flex
450450
YACC = bison
451451
AWK = awk
452452
INSTALLKERNEL := installkernel
453-
DEPMOD = /sbin/depmod
453+
DEPMOD = depmod
454454
PERL = perl
455455
PYTHON = python
456456
PYTHON3 = python3

arch/alpha/include/asm/local64.h

Lines changed: 0 additions & 1 deletion
This file was deleted.

arch/arc/include/asm/Kbuild

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# SPDX-License-Identifier: GPL-2.0
22
generic-y += extable.h
33
generic-y += kvm_para.h
4-
generic-y += local64.h
54
generic-y += mcs_spinlock.h
65
generic-y += parport.h
76
generic-y += user.h

arch/arm/boot/dts/omap3-n950-n9.dtsi

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -494,3 +494,11 @@
494494
clock-names = "sysclk";
495495
};
496496
};
497+
498+
&aes1_target {
499+
status = "disabled";
500+
};
501+
502+
&aes2_target {
503+
status = "disabled";
504+
};

arch/arm/include/asm/Kbuild

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generic-y += early_ioremap.h
33
generic-y += extable.h
44
generic-y += flat.h
5-
generic-y += local64.h
65
generic-y += parport.h
76
generic-y += seccomp.h
87

arch/arm64/Makefile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#
1111
# Copyright (C) 1995-2001 by Russell King
1212

13-
LDFLAGS_vmlinux :=--no-undefined -X -z norelro
13+
LDFLAGS_vmlinux :=--no-undefined -X
1414

1515
ifeq ($(CONFIG_RELOCATABLE), y)
1616
# Pass --no-apply-dynamic-relocs to restore pre-binutils-2.27 behaviour
@@ -110,16 +110,20 @@ KBUILD_CPPFLAGS += -mbig-endian
110110
CHECKFLAGS += -D__AARCH64EB__
111111
# Prefer the baremetal ELF build target, but not all toolchains include
112112
# it so fall back to the standard linux version if needed.
113-
KBUILD_LDFLAGS += -EB $(call ld-option, -maarch64elfb, -maarch64linuxb)
113+
KBUILD_LDFLAGS += -EB $(call ld-option, -maarch64elfb, -maarch64linuxb -z norelro)
114114
UTS_MACHINE := aarch64_be
115115
else
116116
KBUILD_CPPFLAGS += -mlittle-endian
117117
CHECKFLAGS += -D__AARCH64EL__
118118
# Same as above, prefer ELF but fall back to linux target if needed.
119-
KBUILD_LDFLAGS += -EL $(call ld-option, -maarch64elf, -maarch64linux)
119+
KBUILD_LDFLAGS += -EL $(call ld-option, -maarch64elf, -maarch64linux -z norelro)
120120
UTS_MACHINE := aarch64
121121
endif
122122

123+
ifeq ($(CONFIG_LD_IS_LLD), y)
124+
KBUILD_LDFLAGS += -z norelro
125+
endif
126+
123127
CHECKFLAGS += -D__aarch64__
124128

125129
ifeq ($(CONFIG_DYNAMIC_FTRACE_WITH_REGS),y)

arch/arm64/include/asm/Kbuild

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# SPDX-License-Identifier: GPL-2.0
22
generic-y += early_ioremap.h
3-
generic-y += local64.h
43
generic-y += mcs_spinlock.h
54
generic-y += qrwlock.h
65
generic-y += qspinlock.h

arch/csky/include/asm/Kbuild

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generic-y += asm-offsets.h
33
generic-y += gpio.h
44
generic-y += kvm_para.h
5-
generic-y += local64.h
65
generic-y += qrwlock.h
76
generic-y += seccomp.h
87
generic-y += user.h

arch/h8300/include/asm/Kbuild

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
generic-y += asm-offsets.h
33
generic-y += extable.h
44
generic-y += kvm_para.h
5-
generic-y += local64.h
65
generic-y += mcs_spinlock.h
76
generic-y += parport.h
87
generic-y += spinlock.h

arch/hexagon/include/asm/Kbuild

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@
22
generic-y += extable.h
33
generic-y += iomap.h
44
generic-y += kvm_para.h
5-
generic-y += local64.h
65
generic-y += mcs_spinlock.h

0 commit comments

Comments
 (0)