mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-11-01 19:07:47 +00:00
51 lines
1.5 KiB
Diff
51 lines
1.5 KiB
Diff
From 19f767a964da631e3e427d30b2700fa49ef57c1d Mon Sep 17 00:00:00 2001
|
|
From: John Crispin <john@phrozen.org>
|
|
Date: Sun, 16 Jul 2023 17:34:10 +0200
|
|
Subject: [PATCH] kernel: add v5.4 checksums
|
|
|
|
Signed-off-by: John Crispin <john@phrozen.org>
|
|
---
|
|
include/kernel-5.4 | 17 +++++++++++++++++
|
|
include/target.mk | 1 +
|
|
2 files changed, 18 insertions(+)
|
|
create mode 100644 include/kernel-5.4
|
|
|
|
diff --git a/include/kernel-5.4 b/include/kernel-5.4
|
|
new file mode 100644
|
|
index 0000000000..720c5df91e
|
|
--- /dev/null
|
|
+++ b/include/kernel-5.4
|
|
@@ -0,0 +1,17 @@
|
|
+LINUX_VERSION-5.4 = .164
|
|
+LINUX_KERNEL_HASH-5.4.164 = a8fdb27e0e7a871086e0c78b899088c21fbc8e16fb236d220926dc4c93e0fb2d
|
|
+
|
|
+ifeq ($(CONFIG_TARGET_ipq40xx),y)
|
|
+LINUX_VERSION-5.4 = .158
|
|
+LINUX_KERNEL_HASH-5.4.158 = 6e018fecdc8fc24553756e582d83b82d65b10a6b03ef36262a24911f839b8d59
|
|
+endif
|
|
+
|
|
+ifeq ($(CONFIG_TARGET_ipq95xx)$(CONFIG_TARGET_ipq53xx),y)
|
|
+LINUX_VERSION-5.4 = .213
|
|
+LINUX_KERNEL_HASH-5.4.213 = 53d191b59994a3b8b5c9cac7391cbf0a4186ba4bd08b9f378e2d05bfd4921f6d
|
|
+endif
|
|
+
|
|
+ifeq ($(CONFIG_TARGET_mediatek),y)
|
|
+LINUX_VERSION-5.4 = .260
|
|
+LINUX_KERNEL_HASH-5.4.260 = 9830820714c8f5985c50071cc9e1b40533ee81a4f6c704916c7148d16e54ebfe
|
|
+endif
|
|
diff --git a/include/target.mk b/include/target.mk
|
|
index 1138502c04..9b4fec659e 100644
|
|
--- a/include/target.mk
|
|
+++ b/include/target.mk
|
|
@@ -279,6 +279,7 @@ ifeq ($(DUMP),1)
|
|
CPU_TYPE ?= generic
|
|
CPU_CFLAGS_generic = -mcpu=generic
|
|
CPU_CFLAGS_cortex-a53 = -mcpu=cortex-a53
|
|
+ CPU_CFLAGS_cortex-a73 = -mcpu=cortex-a73+crypto
|
|
endif
|
|
ifeq ($(ARCH),arc)
|
|
CPU_TYPE ?= arc700
|
|
--
|
|
2.34.1
|
|
|