From e0b9ac936f136a5a03a40283b911bc4802d98bef Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Mon, 21 Jul 2025 14:08:15 +0200 Subject: all: simplify subsystem revision updates Don't specify the subsystem revision in the dashboard config and instead let it be nested in the registered subsystems. This reduces the amount of the manual work needed to switch syzbot to a newer subsystem list. --- pkg/subsystem/lists/linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/subsystem/lists/linux.go') diff --git a/pkg/subsystem/lists/linux.go b/pkg/subsystem/lists/linux.go index e94fdb9fb..274db98c0 100644 --- a/pkg/subsystem/lists/linux.go +++ b/pkg/subsystem/lists/linux.go @@ -6,7 +6,7 @@ package lists import . "github.com/google/syzkaller/pkg/subsystem" func init() { - RegisterList("linux", subsystems_linux()) + RegisterList("linux", subsystems_linux(), 20250720) } // The subsystem list: -- cgit mrf-deployment