aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-test/hello-dut/files/hello.c
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-test/hello-dut/files/hello.c')
-rw-r--r--meta/recipes-test/hello-dut/files/hello.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/meta/recipes-test/hello-dut/files/hello.c b/meta/recipes-test/hello-dut/files/hello.c
new file mode 100644
index 00000000000..fb89415c9ff
--- /dev/null
+++ b/meta/recipes-test/hello-dut/files/hello.c
@@ -0,0 +1,8 @@
+#include <stdio.h>
+
+int main(int argc, char** argv)
+{
+ printf("Hello world on DUT \n");
+ return 0;
+
+}