More fishy behavior from AVM
Posted Nov 2, 2011 18:26 UTC (Wed) by
arnd (subscriber, #8866)
Parent article:
ELCE11: Till Jaeger on AVM vs. Cybits
The same company also does doesn't try very hard to actually ship the full source code. If you look the kernel source, you quickly find code like
struct bus_type *platform_bus_type_ptr = &platform_bus_type;
EXPORT_SYMBOL(platform_bus_type_ptr);
and
struct workqueue_struct *__ti_create_workqueue(const char *name, int singlethread)
{
return __create_workqueue(name, singlethread, 0 /* nicht frezeable * /, 0 / * keine realtime */);
}
EXPORT_SYMBOL(__ti_create_workqueue);
where they take symbols meant for kernel-internal use (EXPORT_SYMBOL_GPL) and export them to their own binary modules.
(
Log in to post comments)