パラメータの説明 #define __KERNEL__ #define MODULE #include static int hello_i =0; MODULE_PARM(hello_i, "i"); /* 整数 */ MODULE_PARM_DESC(hello_i, "This is Hello's variable"); /* 説明 */ /* 初期化 */ int init_module() { printk("LKM-test:Hello[hello_i=%d]¥n", hello_i ); return 0; } /* 終了処理 */ void cleanup_module() { printk("LKM-test:Bye bye, world ¥n"); }