aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/vcs/linux_configs.go
Commit message (Collapse)AuthorAgeFilesLines
* dashboard/app: use crash types instead, no regexpsTaras Madan2025-07-021-31/+55
|
* pkg/vcs: don't supress rcu stall reports twiceAleksandr Nogikh2023-08-181-5/+5
| | | | First check if the cmdline config is already present.
* pkg/vcs: properly disable lockdepAleksandr Nogikh2023-07-101-5/+8
| | | | | We also need to disable CONFIG_PROVE_LOCKING, which forces CONFIG_LOCKDEP to be enabled.
* pkg/bisect: keep KCOV enabled for newer Linux versionsAleksandr Nogikh2023-07-101-1/+4
| | | | | | | | Let's keep it enabled for newer Linux kernel versions as it keeps the environment closer to the one where the bug happened. We disable KCOV in baseline configs, so we'll try to drop it at the kernel config bisection stage anyway.
* pkg/vcs: disable Linux kernel configs based on crash.TypeAleksandr Nogikh2023-07-051-1/+53
| | | | | | | | More sanitizers means longer compilation times, more flakiness and risks of failures due to bugs in sanitizers themselves. If the crash type is known, determine the sanitizer that detected the problem and disable everything else.
* pkg/vcs: move linuxAlterConfigs() to separate fileAleksandr Nogikh2023-07-051-0/+88
The new linux_configs.go file will contain routines that manage Linux-related configs.