Linux kernel: Difference between revisions

imported>Mic92
link to kernel debugging
imported>Mic92
more complete hello kernel example.
Line 106: Line 106:
module_init(hello_init);
module_init(hello_init);
module_exit(hello_cleanup);
module_exit(hello_cleanup);
</syntaxHighlight>
<syntaxHighlight lang="Make">
obj-m += hello.o
</syntaxHighlight>
</syntaxHighlight>