Module1 간단한 리눅스 모듈 드라이버 1. 모듈드라이버 등록 및 제거 코드 #include #include #include static int __init hello_init(void) { printk(KERN_ALERT "Hello, world!\n"); pr_debug("This is a debug message!\n"); pr_err("This is a error message!\n"); return 0; } static void __exit hello_exit(void) { printk(KERN_ALERT "Bye, World!\n"); } module_init(hello_init); module_exit(hello_exit); MODULE_LICENSE("GPL"); MODULE_AUTHOR("khd0801"); MODULE_DES.. 2022. 4. 14. 이전 1 다음