diff options
author | Patrick Williams <patrick@stwcx.xyz> | 2015-09-15 14:41:29 -0500 |
---|---|---|
committer | Patrick Williams <patrick@stwcx.xyz> | 2015-09-15 14:41:29 -0500 |
commit | 21f9b84b4b729fbd7acbd465e7a3f726e4d20f91 (patch) | |
tree | eb2d091d427ca0813b445509d59cc8e27e8ad25f /yocto-poky/meta-skeleton/recipes-kernel/hello-mod/files/hello.c | |
parent | 101cef31e2bf54c678501155cd2106251acbd076 (diff) | |
parent | c124f4f2e04dca16a428a76c89677328bc7bf908 (diff) | |
download | blackbird-openbmc-21f9b84b4b729fbd7acbd465e7a3f726e4d20f91.tar.gz blackbird-openbmc-21f9b84b4b729fbd7acbd465e7a3f726e4d20f91.zip |
Merge commit 'c124f4f2e04dca16a428a76c89677328bc7bf908' as 'yocto-poky'
Diffstat (limited to 'yocto-poky/meta-skeleton/recipes-kernel/hello-mod/files/hello.c')
-rw-r--r-- | yocto-poky/meta-skeleton/recipes-kernel/hello-mod/files/hello.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/yocto-poky/meta-skeleton/recipes-kernel/hello-mod/files/hello.c b/yocto-poky/meta-skeleton/recipes-kernel/hello-mod/files/hello.c new file mode 100644 index 000000000..f3c0d372e --- /dev/null +++ b/yocto-poky/meta-skeleton/recipes-kernel/hello-mod/files/hello.c @@ -0,0 +1,33 @@ +/****************************************************************************** + * + * Copyright (C) 2011 Intel Corporation. All rights reserved. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; version 2 of the License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See + * the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + *****************************************************************************/ + +#include <linux/module.h> + +int init_module(void) +{ + printk("Hello World!\n"); + return 0; +} + +void cleanup_module(void) +{ + printk("Goodbye Cruel World!\n"); +} + +MODULE_LICENSE("GPL"); |