diff mbox series

[meta-oe,2/2] syzkaller: inherit go-mod-update-modules

Message ID 20260924064523.165613-2-f_l_k@t-online.de
State Under Review
Headers show
Series [meta-oe,1/2] influxdb: inherit go-mod-update-modules | expand

Commit Message

Markus Volk Sept. 24, 2026, 6:45 a.m. UTC
The class includes the generated -licenses.inc and -go-mods.inc files
itself and provides the update_modules task to regenerate them, so the
recipe no longer needs to require them.

AI-Generated: Uses Claude Code (Claude Fable 5.1)
Signed-off-by: Markus Volk <f_l_k@t-online.de>
---
 meta-oe/recipes-test/syzkaller/syzkaller_git.bb | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)
diff mbox series

Patch

diff --git a/meta-oe/recipes-test/syzkaller/syzkaller_git.bb b/meta-oe/recipes-test/syzkaller/syzkaller_git.bb
index bdd4cf6a40..25df242d42 100644
--- a/meta-oe/recipes-test/syzkaller/syzkaller_git.bb
+++ b/meta-oe/recipes-test/syzkaller/syzkaller_git.bb
@@ -4,16 +4,14 @@  BUGTRACKER = "https://github.com/google/syzkaller/issues"
 SECTION = "devel"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://src/${GO_IMPORT}/LICENSE;md5=5335066555b14d832335aa4660d6c376"
-require ${BPN}-licenses.inc
 
 SRC_URI = "git://${GO_IMPORT};protocol=https;destsuffix=${GO_SRCURI_DESTSUFFIX};branch=master"
 SRCREV = "22ec1469fe8c0ba256de07e8f97fa7b375b522bd"
-require ${BPN}-go-mods.inc
 
 # Upstream repo does not tag
 UPSTREAM_CHECK_COMMITS = "1"
 
-inherit go-mod
+inherit go-mod go-mod-update-modules
 
 GO_IMPORT = "github.com/google/syzkaller"