[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20061028004147.GB4902@martell.zuzino.mipt.ru>
Date: Sat, 28 Oct 2006 04:41:47 +0400
From: Alexey Dobriyan <adobriyan@...il.com>
To: Andrew Morton <akpm@...l.org>
Cc: linux-kernel@...r.kernel.org
Subject: [PATCH] Blacklist hsfmodem module
Google CodeSeacrh for
MODULE_LICENSE.*0
and you'll see
hsfmodem-7.47.00.03x86_64full/modules/cnxthwusb_common.c - 6 identical
15: MODULE_DESCRIPTION("Conexant low-level hardware driver");
MODULE_LICENSE("GPL\0for files in the \"GPL\" directory; for others, only LICENSE file applies");
MODULE_INFO(supported, "yes");
gentoo.osuosl.org/.../hsfmodem-7.47.00.03x86_64full.tar.gz - Unknown License - C - More from hsfmodem-7.47.00.03x86_64full.tar.gz ยป
It seems, hcfpcimodem-1.10full.tar.gz from
http://www.linuxant.com/drivers/hcf/full/downloads.php
also uses GPL\0 trick.
Patch is obviously not tested (and I'm not sure name is right, got it from
Ubuntu forums and tarball filename),
Does someone know internal contact so we can weed out all names and
blacklist them in bulk?
P.S.: Curiously enough, binary parts are *.O , not *.o .
Presumably, .o suffix scares their developers, while tainting
messages are busy scaring their users.
Signed-off-by: Alexey Dobriyan <adobriyan@...il.com>
---
kernel/module.c | 3 +++
1 file changed, 3 insertions(+)
--- a/kernel/module.c
+++ b/kernel/module.c
@@ -1721,6 +1721,9 @@ #endif
add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
if (strcmp(mod->name, "driverloader") == 0)
add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
+ /* LinuxAnt is politely asked to stop GPL\0 idiocy. */
+ if (strcmp(mod->name, "hsfmodem") == 0)
+ add_taint_module(mod, TAINT_PROPRIETARY_MODULE);
/* Set up MODINFO_ATTR fields */
setup_modinfo(mod, sechdrs, infoindex);
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists