http://www.ilovepc.co.kr/bbs/board.php?bo_table=hardware&wr_id=1297

 

 

http://www.linuxquestions.org/questions/linux-kernel-70/passing-a-custom-parameter-to-the-kernel-587787/

 

 

unsigned int my_param;
EXPORT_SYMBOL (my_param);
.
.
.
static int __init set_my_param(char *str)
{
    get_option(&str, &my_param);
    return 1;
}

__setup("my_param=", set_my_param);

http://www.viper.pe.kr/docs/make-ko/make-ko_6.html#SEC58

+ Recent posts