Ich habe ein hollowworld.c
kompilieren und ausführen:wie ein Make-Datei für programm.c erstellen und in Echtzeit Application Interface
/* hello.c */
#include <linux/kernel.h>
#include <linux/module.h>
MODULE_LICENSE("GPL");
int init_module(void)
{
printk("Hello world!\n"); /* printk = kernel printf, to the console */
return 0;
}
void cleanup_module(void)
{
printk("Goodbye world!\n");
return;
}
wie schaffen eine Make-Datei für programm.c und wie kompilieren und ausführen in Echt Zeit Anwendungsschnittstelle?
Dies ist ein Kernel-Modul, was meinst du mit "Real Time Application"? – fluter