pc
2012. 9. 17. 15:01
kernel로 boot arg전달하기 (custom value)
2012. 6. 7. 17:18
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);
makefile 규칙
2012. 4. 9. 11:53