From 6d3b01e0da4be86334ae95d19a7c912ebe5628bd Mon Sep 17 00:00:00 2001 From: Ulises Mendez Martinez Date: Thu, 2 Oct 2025 15:40:15 +0000 Subject: [PATCH] modinfo: add built_with to the list of tags The built_with tag is used by the Android kernel for kernel modules built with the Driver Development Kit. See http://r.android.com/3347111 --- toys/other/modinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toys/other/modinfo.c b/toys/other/modinfo.c index 5a94a4fd..0a6d6577 100644 --- a/toys/other/modinfo.c +++ b/toys/other/modinfo.c @@ -44,7 +44,7 @@ static void modinfo_file(char *full_name) char *buf = 0, *end, *modinfo_tags[] = { "license", "author", "description", "firmware", "alias", "srcversion", "depends", "retpoline", "intree", "name", "vermagic", "parm", "parmtype", - "scmversion", + "scmversion", "built_with", }; if (-1 != (fd = open(full_name, O_RDONLY))) { -- 2.39.5