mirror of
https://git.yoctoproject.org/poky
synced 2026-08-01 04:17:44 +02:00
The new oeqa core framework will modify the structure of the runtime folder the new runtime folder will have python code inside to support runtime test cases. (From OE-Core rev: 637b712096e9d230e15b1a432a561e4118db34c8) Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
20 lines
353 B
C
20 lines
353 B
C
#include <linux/module.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/init.h>
|
|
|
|
static int __init hello_init(void)
|
|
{
|
|
printk(KERN_INFO "Hello world!\n");
|
|
return 0;
|
|
}
|
|
|
|
static void __exit hello_cleanup(void)
|
|
{
|
|
printk(KERN_INFO "Cleaning up hellomod.\n");
|
|
}
|
|
|
|
module_init(hello_init);
|
|
module_exit(hello_cleanup);
|
|
|
|
MODULE_LICENSE("GPL");
|