From dc9e52595336dbe32f9a20f5da9f09cb8172cd21 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 3 May 2022 14:38:27 +0200 Subject: dashboard/app: show kernel config for the current manager build It's useful to be able to look at the current config for a particular manager. Currently it's doable but somewhat ugly (find a recently reported crash and look at its config). Show kernel config for each manager directly. --- dashboard/app/templates.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dashboard/app/templates.html b/dashboard/app/templates.html index 19123b72e..f0165503d 100644 --- a/dashboard/app/templates.html +++ b/dashboard/app/templates.html @@ -181,7 +181,7 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the Coverage {{template "info_link" "https://github.com/google/syzkaller/blob/master/docs/coverage.md"}} Crashes Execs - Kernel build + Kernel build syzkaller build @@ -193,6 +193,7 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the Commit + Config Freshness Status Commit @@ -224,6 +225,7 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the {{end}} {{with $build := $mgr.CurrentBuild}} {{link $build.KernelCommitLink (formatTagHash $build.KernelCommit)}} + {{link $build.KernelConfigLink ".config"}} {{formatLateness $mgr.Now $build.KernelCommitDate}} {{if $mgr.FailedBuildBugLink}}failing{{end}} {{link $build.SyzkallerCommitLink (formatShortHash $build.SyzkallerCommit)}} @@ -236,6 +238,7 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the + {{end}} {{end}} -- cgit mrf-deployment