From d6dd42a18f1ea7e43fd4a33638deb43f7ba54f9d Mon Sep 17 00:00:00 2001 From: Nathan Chancellor Date: Tue, 28 May 2024 09:05:46 -0700 Subject: [PATCH] build-llvm.py: Use latest mainline tag for profiling Signed-off-by: Nathan Chancellor --- build-llvm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-llvm.py b/build-llvm.py index f9e0646b..f6df4fca 100755 --- a/build-llvm.py +++ b/build-llvm.py @@ -444,7 +444,7 @@ f"Supplied kernel source version ('{found_version}') is older than the minimum required version ('{minimum_version}'), provide a newer version!" ) else: - lsm.location = Path(src_folder, 'linux-6.9') + lsm.location = Path(src_folder, 'linux-6.10-rc1') lsm.patches = list(src_folder.glob('*.patch')) lsm.tarball.base_download_url = 'https://git.kernel.org/torvalds/t'