start.c 295 B

1234567891011121314
  1. /*
  2. * start.c - Illustration of multi filed modules
  3. */
  4. #include <linux/kernel.h> /* We are doing kernel work */
  5. #include <linux/module.h> /* Specifically, a module */
  6. int init_module(void)
  7. {
  8. pr_info("Hello, world - this is the kernel speaking\n");
  9. return 0;
  10. }
  11. MODULE_LICENSE("GPL");