This commit is contained in:
tuna2134
2026-07-06 22:50:56 +09:00
parent bbf52550be
commit 5fa3637a5b
16 changed files with 4052 additions and 2 deletions

21
etherip6.mod.c Normal file
View File

@@ -0,0 +1,21 @@
#include <linux/module.h>
#include <linux/export-internal.h>
#include <linux/compiler.h>
MODULE_INFO(name, KBUILD_MODNAME);
__visible struct module __this_module
__section(".gnu.linkonce.this_module") = {
.name = KBUILD_MODNAME,
.init = init_module,
#ifdef CONFIG_MODULE_UNLOAD
.exit = cleanup_module,
#endif
.arch = MODULE_ARCH_INIT,
};
MODULE_INFO(depends, "");
MODULE_INFO(srcversion, "481F4CF394EABC790E50EAD");