Version bump
This commit is contained in:
		@@ -1 +1 @@
 | 
			
		||||
DIST orange-pi-6.1-20230104-1712.tar.gz 223562139 BLAKE2B 635525429db3599691dba21ac86f40492f0cb2d5060bbfcc32cd789ac2379593008b09de0dc40a189481e4e033404546aad6bbd9b32214a09c390f738d4410cf SHA512 4795a261e1016c9d5d4c11cfee43d8cd020b2c2cfed50b87840dba28b8aaee236e533c6eef582ccbbdef65fc36dd7381189c2b0bc0da0922f1282ade8252d75f
 | 
			
		||||
DIST orange-pi-6.2-20230307-1859.tar.gz 225749266 BLAKE2B 6afa4a274e04aaedbd31d8185a6c373c9379dfee3414b8a0006307caa30a22fab4616b655cc47a8c14e149ed7d2adf56251a569a7bb762d6f50ac2a26bdb18c9 SHA512 b1be97c723aa2781aa83d0464bfe5f8364a96e3c2f519986730f84984f93ab567c4c4a9d02a422881da1f1e59c40550562f4d1e28818b384acdb0824f2ee049e
 | 
			
		||||
 
 | 
			
		||||
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							@@ -0,0 +1,17 @@
 | 
			
		||||
--- a/fs/namei.c	2022-01-23 13:02:27.876558299 -0500
 | 
			
		||||
+++ b/fs/namei.c	2022-03-06 12:47:39.375719693 -0500
 | 
			
		||||
@@ -1020,10 +1020,10 @@ static inline void put_link(struct namei
 | 
			
		||||
 		path_put(&last->link);
 | 
			
		||||
 }
 | 
			
		||||
 
 | 
			
		||||
-static int sysctl_protected_symlinks __read_mostly;
 | 
			
		||||
-static int sysctl_protected_hardlinks __read_mostly;
 | 
			
		||||
-static int sysctl_protected_fifos __read_mostly;
 | 
			
		||||
-static int sysctl_protected_regular __read_mostly;
 | 
			
		||||
+static int sysctl_protected_symlinks __read_mostly = 1;
 | 
			
		||||
+static int sysctl_protected_hardlinks __read_mostly = 1;
 | 
			
		||||
+int sysctl_protected_fifos __read_mostly = 1;
 | 
			
		||||
+int sysctl_protected_regular __read_mostly = 1;
 | 
			
		||||
 
 | 
			
		||||
 #ifdef CONFIG_SYSCTL
 | 
			
		||||
 static struct ctl_table namei_sysctls[] = {
 | 
			
		||||
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							@@ -1,30 +0,0 @@
 | 
			
		||||
From 4157360d2e1cbdfb8065f151dbe057b17188a23f Mon Sep 17 00:00:00 2001
 | 
			
		||||
From: Tor Vic <torvic9@mailbox.org>
 | 
			
		||||
Date: Mon, 7 Nov 2022 15:11:54 +0100
 | 
			
		||||
Subject: [PATCH] sched/alt: Add missing rq_lock_irq() function to header file
 | 
			
		||||
 | 
			
		||||
---
 | 
			
		||||
 kernel/sched/alt_sched.h | 7 +++++++
 | 
			
		||||
 1 file changed, 7 insertions(+)
 | 
			
		||||
 | 
			
		||||
diff --git a/kernel/sched/alt_sched.h b/kernel/sched/alt_sched.h
 | 
			
		||||
index 93ff3bddd36f..a00bc84b93b2 100644
 | 
			
		||||
--- a/kernel/sched/alt_sched.h
 | 
			
		||||
+++ b/kernel/sched/alt_sched.h
 | 
			
		||||
@@ -387,6 +387,13 @@ task_rq_unlock(struct rq *rq, struct task_struct *p, struct rq_flags *rf)
 | 
			
		||||
 	raw_spin_unlock_irqrestore(&p->pi_lock, rf->flags);
 | 
			
		||||
 }
 | 
			
		||||
 
 | 
			
		||||
+static inline void
 | 
			
		||||
+rq_lock_irq(struct rq *rq, struct rq_flags *rf)
 | 
			
		||||
+	__acquires(rq->lock)
 | 
			
		||||
+{
 | 
			
		||||
+	raw_spin_lock_irq(&rq->lock);
 | 
			
		||||
+}
 | 
			
		||||
+
 | 
			
		||||
 static inline void
 | 
			
		||||
 rq_lock(struct rq *rq, struct rq_flags *rf)
 | 
			
		||||
 	__acquires(rq->lock)
 | 
			
		||||
-- 
 | 
			
		||||
GitLab
 | 
			
		||||
 | 
			
		||||
@@ -17,15 +17,15 @@ DEPEND="${RDEPEND}
 | 
			
		||||
 | 
			
		||||
DESCRIPTION="Full sources for the Linux kernel, with megi's patch for pinephone and gentoo patchset"
 | 
			
		||||
 | 
			
		||||
MEGI_TAG="orange-pi-6.1-20230104-1712"
 | 
			
		||||
MEGI_TAG="orange-pi-6.2-20230307-1859"
 | 
			
		||||
SRC_URI="https://github.com/megous/linux/archive/${MEGI_TAG}.tar.gz"
 | 
			
		||||
 | 
			
		||||
PATCHES=(
 | 
			
		||||
	#Kernel patch
 | 
			
		||||
	${FILESDIR}/1003_linux-6.1.4.patch
 | 
			
		||||
 | 
			
		||||
	#Gentoo Patches
 | 
			
		||||
	${FILESDIR}/1500_XATTR_USER_PREFIX.patch
 | 
			
		||||
	${FILESDIR}/1510_fs-enable-link-security-restrictions-by-default.patch
 | 
			
		||||
	${FILESDIR}/1700_sparc-address-warray-bound-warnings.patch
 | 
			
		||||
	${FILESDIR}/2000_BT-Check-key-sizes-only-if-Secure-Simple-Pairing-enabled.patch
 | 
			
		||||
	${FILESDIR}/2900_tmp513-Fix-build-issue-by-selecting-CONFIG_REG.patch
 | 
			
		||||
@@ -34,8 +34,6 @@ PATCHES=(
 | 
			
		||||
	${FILESDIR}/3000_Support-printing-firmware-info.patch
 | 
			
		||||
	${FILESDIR}/4567_distro-Gentoo-Kconfig.patch
 | 
			
		||||
	${FILESDIR}/5010_enable-cpu-optimizations-universal.patch
 | 
			
		||||
	${FILESDIR}/5020_BMQ-and-PDS-io-scheduler-v6.1-r0.patch
 | 
			
		||||
	${FILESDIR}/5021_sched-alt-missing-rq-lock-irq-function.patch
 | 
			
		||||
 | 
			
		||||
	# Drop Megi's Modem-Power
 | 
			
		||||
	${FILESDIR}/0101-arm64-dts-pinephone-drop-modem-power-node.patch
 | 
			
		||||
		Reference in New Issue
	
	Block a user