@twobob : Would you dig around in your machine and see if you can determine **which** source version you used?
I was using the k3-3.3 (because they never posted k3-3.4).
Me thinks you where using an earlier source version.
Because binfmt_misc.mod.c certainly looks like a no-op in this source:
Code:
#include <linux/module.h>
#include <linux/vermagic.h>
#include <linux/compiler.h>
MODULE_INFO(vermagic, VERMAGIC_STRING);
struct module __this_module
__attribute__((section(".gnu.linkonce.this_module"))) = {
.name = KBUILD_MODNAME,
.init = init_module,
#ifdef CONFIG_MODULE_UNLOAD
.exit = cleanup_module,
#endif
.arch = MODULE_ARCH_INIT,
};
static const struct modversion_info ____versions[]
__used
__attribute__((section("__versions"))) = {
};
static const char __module_depends[]
__used
__attribute__((section(".modinfo"))) =
"depends=";