我正在尝试修改我的android手机的linux内核中的一个模块。我对内核很陌生。我在这里读到了__setup()
宏:http://www.e-reading.ws/chapter.php/101551/103/Hallinan_-_Embedded_Linux_Primer__A_Practical,_Real-World_Approach.html。
到目前为止这是我的代码:
/* Read cmdline */
static int __init read_cmdline(char *dt2w)
{
if (strcmp(dt2w, "1") == 0) {
pr_info(LOGTAG" Enabled. | dt2w='%s'\n", dt2w);
dt2w_switch = 1;
} else if (strcmp(dt2w, "0") == 0) {
pr_info(LOGTAG" Disabled. | dt2w='%s'\n", dt2w);
dt2w_switch = 0;
} else {
pr_info(LOGTAG" No valid input found. Going with default: | dt2w='%u'\n", dt2w_switch);
}
return 1;
}
__setup("dt2w=", read_cmdline);
但当我执行
dt2w=<some int>
时,在dmesg
中看不到任何日志输出。我确信模块正在编译和加载,因为它工作正常。
最佳答案
内核命令行参数在加载内核时处理,即在加载模块之前。
要处理模块中的参数,请使用模块参数。
(通过使用类似mymodule.dt2w=xxx
的命令行,仍然可以在内核命令行上提供模块参数)
关于android - __setup宏不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23034664/