From 11175f0eda295a1da13e3e153348d79620a835be Mon Sep 17 00:00:00 2001 From: Nathan Chancellor Date: Mon, 7 Oct 2024 17:28:48 -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 6d2b010c..8f3d8883 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.11') + lsm.location = Path(src_folder, 'linux-6.12-rc2') lsm.patches = list(src_folder.glob('*.patch')) lsm.tarball.base_download_url = 'https://git.kernel.org/torvalds/t'