aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/vcs
diff options
context:
space:
mode:
authorSpace Meyer <meyerpatrick@google.com>2022-08-02 12:42:01 +0000
committerAleksandr Nogikh <wp32pw@gmail.com>2022-09-01 10:42:40 +0200
commit1628b0078d029469c90644c3e8ba5acf7c307c6a (patch)
tree3c2d6f77bb5eb54c1674fe1ccf32d1d04006b4fd /pkg/vcs
parentd9393412ccc24ce82dcd6ab8916c966615150edd (diff)
pkg/vcs: remove cherry-pick for making very old linux versions boot
We no longer support bisecting this far back anyhow. Plus the way this checks for tags conflicts with future changes in this branch.
Diffstat (limited to 'pkg/vcs')
-rw-r--r--pkg/vcs/linux.go7
1 files changed, 0 insertions, 7 deletions
diff --git a/pkg/vcs/linux.go b/pkg/vcs/linux.go
index c6eb663cd..d48db3256 100644
--- a/pkg/vcs/linux.go
+++ b/pkg/vcs/linux.go
@@ -136,13 +136,6 @@ func (ctx *linux) EnvForCommit(binDir, commit string, kernelConfig []byte) (*Bis
Compiler: filepath.Join(binDir, "gcc-"+linuxCompilerVersion(tags), "bin", "gcc"),
KernelConfig: cf.Serialize(),
}
- // v4.0 doesn't boot with our config nor with defconfig, it halts on an interrupt in x86_64_start_kernel.
- if !tags["v4.1"] {
- _, err := ctx.git.git("cherry-pick", "--no-commit", "99124e4db5b7b70daeaaf1d88a6a8078a0004c6e")
- if err != nil {
- return nil, err
- }
- }
return env, nil
}