kernel: bump 5.10 to 5.10.107 (#9105)
All patches automatically rebased. Build system: x86_64 Build-tested: bcm2711/RPi4B, mt7622/RT3200 Run-tested: bcm2711/RPi4B, mt7622/RT3200 Signed-off-by: John Audia <graysky@archlinux.us> Co-authored-by: John Audia <graysky@archlinux.us>
This commit is contained in:
parent
c672ca8ab3
commit
c0491fe7aa
@ -1,2 +1,2 @@
|
|||||||
LINUX_VERSION-5.10 = .106
|
LINUX_VERSION-5.10 = .107
|
||||||
LINUX_KERNEL_HASH-5.10.106 = c68651c8c70e2443ab6ebd1a3ed4e06694f988ffa40a664d8374f0cee0a3597a
|
LINUX_KERNEL_HASH-5.10.107 = c467c3077946370fb26c9277313b601d6c48bb557abc889f4892caf627fcdfea
|
||||||
|
@ -32,6 +32,15 @@ Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
|
|||||||
lib1funcs.o ashldi3.o bswapsdi2.o \
|
lib1funcs.o ashldi3.o bswapsdi2.o \
|
||||||
--- a/arch/arm/kernel/vmlinux.lds.S
|
--- a/arch/arm/kernel/vmlinux.lds.S
|
||||||
+++ b/arch/arm/kernel/vmlinux.lds.S
|
+++ b/arch/arm/kernel/vmlinux.lds.S
|
||||||
|
@@ -75,7 +75,7 @@ SECTIONS
|
||||||
|
. = ALIGN(4);
|
||||||
|
__ex_table : AT(ADDR(__ex_table) - LOAD_OFFSET) {
|
||||||
|
__start___ex_table = .;
|
||||||
|
- ARM_MMU_KEEP(*(__ex_table))
|
||||||
|
+ KEEP(*(__ex_table))
|
||||||
|
__stop___ex_table = .;
|
||||||
|
}
|
||||||
|
|
||||||
@@ -100,24 +100,24 @@ SECTIONS
|
@@ -100,24 +100,24 @@ SECTIONS
|
||||||
}
|
}
|
||||||
.init.arch.info : {
|
.init.arch.info : {
|
||||||
@ -63,14 +72,7 @@ Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
|
|||||||
|
|
||||||
--- a/arch/arm/include/asm/vmlinux.lds.h
|
--- a/arch/arm/include/asm/vmlinux.lds.h
|
||||||
+++ b/arch/arm/include/asm/vmlinux.lds.h
|
+++ b/arch/arm/include/asm/vmlinux.lds.h
|
||||||
@@ -23,19 +23,19 @@
|
@@ -42,13 +42,13 @@
|
||||||
#define ARM_MMU_DISCARD(x)
|
|
||||||
#else
|
|
||||||
#define ARM_MMU_KEEP(x)
|
|
||||||
-#define ARM_MMU_DISCARD(x) x
|
|
||||||
+#define ARM_MMU_DISCARD(x) KEEP(x)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define PROC_INFO \
|
#define PROC_INFO \
|
||||||
. = ALIGN(4); \
|
. = ALIGN(4); \
|
||||||
__proc_info_begin = .; \
|
__proc_info_begin = .; \
|
||||||
@ -86,7 +88,7 @@ Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
|
|||||||
__idmap_text_end = .; \
|
__idmap_text_end = .; \
|
||||||
|
|
||||||
#define ARM_DISCARD \
|
#define ARM_DISCARD \
|
||||||
@@ -96,12 +96,12 @@
|
@@ -109,12 +109,12 @@
|
||||||
. = ALIGN(8); \
|
. = ALIGN(8); \
|
||||||
.ARM.unwind_idx : { \
|
.ARM.unwind_idx : { \
|
||||||
__start_unwind_idx = .; \
|
__start_unwind_idx = .; \
|
||||||
@ -101,20 +103,21 @@ Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
|
|||||||
__stop_unwind_tab = .; \
|
__stop_unwind_tab = .; \
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -112,14 +112,14 @@
|
@@ -126,7 +126,7 @@
|
||||||
#define ARM_VECTORS \
|
__vectors_lma = .; \
|
||||||
__vectors_start = .; \
|
OVERLAY 0xffff0000 : NOCROSSREFS AT(__vectors_lma) { \
|
||||||
.vectors 0xffff0000 : AT(__vectors_start) { \
|
.vectors { \
|
||||||
- *(.vectors) \
|
- *(.vectors) \
|
||||||
+ KEEP(*(.vectors)) \
|
+ KEEP(*(.vectors)) \
|
||||||
} \
|
} \
|
||||||
. = __vectors_start + SIZEOF(.vectors); \
|
.vectors.bhb.loop8 { \
|
||||||
__vectors_end = .; \
|
*(.vectors.bhb.loop8) \
|
||||||
|
@@ -144,7 +144,7 @@
|
||||||
\
|
\
|
||||||
__stubs_start = .; \
|
__stubs_lma = .; \
|
||||||
.stubs ADDR(.vectors) + 0x1000 : AT(__stubs_start) { \
|
.stubs ADDR(.vectors) + 0x1000 : AT(__stubs_lma) { \
|
||||||
- *(.stubs) \
|
- *(.stubs) \
|
||||||
+ KEEP(*(.stubs)) \
|
+ KEEP(*(.stubs)) \
|
||||||
} \
|
} \
|
||||||
. = __stubs_start + SIZEOF(.stubs); \
|
ARM_LMA(__stubs, .stubs); \
|
||||||
__stubs_end = .; \
|
. = __stubs_lma + SIZEOF(.stubs); \
|
@ -92,7 +92,7 @@ Signed-off-by: John Crispin <john@phrozen.org>
|
|||||||
bool
|
bool
|
||||||
--- a/lib/Kconfig
|
--- a/lib/Kconfig
|
||||||
+++ b/lib/Kconfig
|
+++ b/lib/Kconfig
|
||||||
@@ -419,16 +419,16 @@ config BCH_CONST_T
|
@@ -418,16 +418,16 @@ config BCH_CONST_T
|
||||||
# Textsearch support is select'ed if needed
|
# Textsearch support is select'ed if needed
|
||||||
#
|
#
|
||||||
config TEXTSEARCH
|
config TEXTSEARCH
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
that can be interpreted by the ASN.1 stream decoder and used to
|
that can be interpreted by the ASN.1 stream decoder and used to
|
||||||
--- a/lib/Kconfig
|
--- a/lib/Kconfig
|
||||||
+++ b/lib/Kconfig
|
+++ b/lib/Kconfig
|
||||||
@@ -590,7 +590,7 @@ config LIBFDT
|
@@ -589,7 +589,7 @@ config LIBFDT
|
||||||
bool
|
bool
|
||||||
|
|
||||||
config OID_REGISTRY
|
config OID_REGISTRY
|
||||||
|
@ -1087,7 +1087,7 @@ Signed-off-by: Alexandros C. Couloumbis <alex@ozo.com>
|
|||||||
#define JFFS2_NODE_ACCURATE 0x2000
|
#define JFFS2_NODE_ACCURATE 0x2000
|
||||||
--- a/lib/Kconfig
|
--- a/lib/Kconfig
|
||||||
+++ b/lib/Kconfig
|
+++ b/lib/Kconfig
|
||||||
@@ -316,6 +316,12 @@ config ZSTD_DECOMPRESS
|
@@ -315,6 +315,12 @@ config ZSTD_DECOMPRESS
|
||||||
|
|
||||||
source "lib/xz/Kconfig"
|
source "lib/xz/Kconfig"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user