summaryrefslogtreecommitdiff
path: root/yocto-poky/meta/lib/oeqa/runtime/files
diff options
context:
space:
mode:
authorPatrick Williams <patrick@stwcx.xyz>2016-08-17 22:31:25 +0300
committerPatrick Williams <patrick@stwcx.xyz>2016-08-22 19:43:26 +0300
commit60f9d69e016b11c468c98ea75ba0a60c44afbbc4 (patch)
treeecb49581a9e41a37943c22cd9ef3f63451b20ee7 /yocto-poky/meta/lib/oeqa/runtime/files
parente18c61205e0234b03697129c20cc69c9b3940efc (diff)
downloadopenbmc-60f9d69e016b11c468c98ea75ba0a60c44afbbc4.tar.xz
yocto-poky: Move to import-layers subdir
We are going to import additional layers, so create a subdir to hold all of the layers that we import with git-subtree. Change-Id: I6f732153a22be8ca663035c518837e3cc5ec0799 Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Diffstat (limited to 'yocto-poky/meta/lib/oeqa/runtime/files')
-rw-r--r--yocto-poky/meta/lib/oeqa/runtime/files/hellomod.c19
-rw-r--r--yocto-poky/meta/lib/oeqa/runtime/files/hellomod_makefile8
-rw-r--r--yocto-poky/meta/lib/oeqa/runtime/files/test.c26
-rw-r--r--yocto-poky/meta/lib/oeqa/runtime/files/test.cpp3
-rw-r--r--yocto-poky/meta/lib/oeqa/runtime/files/test.pl2
-rw-r--r--yocto-poky/meta/lib/oeqa/runtime/files/test.py6
-rw-r--r--yocto-poky/meta/lib/oeqa/runtime/files/testmakefile5
-rw-r--r--yocto-poky/meta/lib/oeqa/runtime/files/testsdkmakefile5
8 files changed, 0 insertions, 74 deletions
diff --git a/yocto-poky/meta/lib/oeqa/runtime/files/hellomod.c b/yocto-poky/meta/lib/oeqa/runtime/files/hellomod.c
deleted file mode 100644
index a383397e9..000000000
--- a/yocto-poky/meta/lib/oeqa/runtime/files/hellomod.c
+++ /dev/null
@@ -1,19 +0,0 @@
-#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");
diff --git a/yocto-poky/meta/lib/oeqa/runtime/files/hellomod_makefile b/yocto-poky/meta/lib/oeqa/runtime/files/hellomod_makefile
deleted file mode 100644
index b92d5c8fe..000000000
--- a/yocto-poky/meta/lib/oeqa/runtime/files/hellomod_makefile
+++ /dev/null
@@ -1,8 +0,0 @@
-obj-m := hellomod.o
-KDIR := /usr/src/kernel
-
-all:
- $(MAKE) -C $(KDIR) M=$(PWD) modules
-
-clean:
- $(MAKE) -C $(KDIR) M=$(PWD) clean
diff --git a/yocto-poky/meta/lib/oeqa/runtime/files/test.c b/yocto-poky/meta/lib/oeqa/runtime/files/test.c
deleted file mode 100644
index 2d8389c92..000000000
--- a/yocto-poky/meta/lib/oeqa/runtime/files/test.c
+++ /dev/null
@@ -1,26 +0,0 @@
-#include <stdio.h>
-#include <math.h>
-#include <stdlib.h>
-
-double convert(long long l)
-{
- return (double)l;
-}
-
-int main(int argc, char * argv[]) {
-
- long long l = 10;
- double f;
- double check = 10.0;
-
- f = convert(l);
- printf("convert: %lld => %f\n", l, f);
- if ( f != check ) exit(1);
-
- f = 1234.67;
- check = 1234.0;
- printf("floorf(%f) = %f\n", f, floorf(f));
- if ( floorf(f) != check) exit(1);
-
- return 0;
-}
diff --git a/yocto-poky/meta/lib/oeqa/runtime/files/test.cpp b/yocto-poky/meta/lib/oeqa/runtime/files/test.cpp
deleted file mode 100644
index 9e1a76473..000000000
--- a/yocto-poky/meta/lib/oeqa/runtime/files/test.cpp
+++ /dev/null
@@ -1,3 +0,0 @@
-#include <limits>
-
-int main() {} \ No newline at end of file
diff --git a/yocto-poky/meta/lib/oeqa/runtime/files/test.pl b/yocto-poky/meta/lib/oeqa/runtime/files/test.pl
deleted file mode 100644
index 689c8f163..000000000
--- a/yocto-poky/meta/lib/oeqa/runtime/files/test.pl
+++ /dev/null
@@ -1,2 +0,0 @@
-$a = 9.01e+21 - 9.01e+21 + 0.01;
-print ("the value of a is ", $a, "\n");
diff --git a/yocto-poky/meta/lib/oeqa/runtime/files/test.py b/yocto-poky/meta/lib/oeqa/runtime/files/test.py
deleted file mode 100644
index f3a2273c5..000000000
--- a/yocto-poky/meta/lib/oeqa/runtime/files/test.py
+++ /dev/null
@@ -1,6 +0,0 @@
-import os
-
-os.system('touch /tmp/testfile.python')
-
-a = 9.01e+21 - 9.01e+21 + 0.01
-print "the value of a is %s" % a
diff --git a/yocto-poky/meta/lib/oeqa/runtime/files/testmakefile b/yocto-poky/meta/lib/oeqa/runtime/files/testmakefile
deleted file mode 100644
index ca1844e93..000000000
--- a/yocto-poky/meta/lib/oeqa/runtime/files/testmakefile
+++ /dev/null
@@ -1,5 +0,0 @@
-test: test.o
- gcc -o test test.o -lm
-test.o: test.c
- gcc -c test.c
-
diff --git a/yocto-poky/meta/lib/oeqa/runtime/files/testsdkmakefile b/yocto-poky/meta/lib/oeqa/runtime/files/testsdkmakefile
deleted file mode 100644
index fb05f822f..000000000
--- a/yocto-poky/meta/lib/oeqa/runtime/files/testsdkmakefile
+++ /dev/null
@@ -1,5 +0,0 @@
-test: test.o
- $(CC) -o test test.o -lm
-test.o: test.c
- $(CC) -c test.c
-