Eclipse를 사용하여 커널 2.6 용 "Hello World"장치 드라이버 작성
골 우분투에서 간단한 장치 드라이버를 작성하려고합니다. Eclipse (또는 드라이버 프로그래밍에 적합한 더 나은 IDE)를 사용 하여이 작업을 수행하고 싶습니다. 코드는 다음과 같습니다. #include <linux/module.h> static int __init hello_world( void ) { printk( "hello world!\n" ); return 0; } static void __exit goodbye_world( void ) { printk( "goodbye world!\n" ); } …