On Sun, 2024-08-18 at 15:42 -0400, John Kacur wrote: > The older kernel fails to compile on newer tool chains, so upgrade > the kernel that kcompile compiles as a load to linux-6.10.5 > > Signed-off-by: John Kacur <jkacur@xxxxxxxxxx> > --- > Dockerfile | 2 +- > Makefile | 2 +- > rteval/modules/loads/kcompile.py | 4 ++-- > rteval/rteval.conf | 2 +- Wait, there's both an rteval.conf and an rteval/rteval.conf? > > diff --git a/rteval/modules/loads/kcompile.py > b/rteval/modules/loads/kcompile.py > index f7a9c0084805..80106812af0a 100644 > --- a/rteval/modules/loads/kcompile.py > +++ b/rteval/modules/loads/kcompile.py > @@ -21,7 +21,7 @@ expand_cpulist = cpulist_utils.expand_cpulist > compress_cpulist = cpulist_utils.compress_cpulist > nonisolated_cpulist = cpulist_utils.nonisolated_cpulist > > -DEFAULT_KERNEL_PREFIX = "linux-6.6" > +DEFAULT_KERNEL_PREFIX = "linux-6.10.5" > > class KBuildJob: > '''Class to manage a build job bound to a particular node''' > @@ -334,7 +334,7 @@ class Kcompile(CommandLineLoad): > > def ModuleParameters(): > return {"source": {"descr": "Source tar ball", > - "default": "linux-6.6.1.tar.xz", > + "default": "linux-6.10.5.tar.xz", > "metavar": "TARBALL"}, > "jobspercore": {"descr": "Number of working threads per > core", > "default": 2, > diff --git a/rteval/rteval.conf b/rteval/rteval.conf > index a4aad33e264f..0611c031c2a0 100644 > --- a/rteval/rteval.conf > +++ b/rteval/rteval.conf > @@ -18,7 +18,7 @@ dbench: external > stressng: module > > [kcompile] > -source: linux-6.6.1.xz > +source: linux-6.10.5.xz Why does this not have .tar in the name, while both the default and the actual filename do? -Crystal