<div dir="ltr"><div><span style="margin:0px;padding:0px;border:0px;font-weight:400;font-style:normal;font-family:"gg sans","Noto Sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:16px;vertical-align:baseline;outline:0px;color:rgb(219,222,225);font-variant-ligatures:normal;font-variant-caps:normal;letter-spacing:normal;text-align:left;text-indent:0px;text-transform:none;white-space:break-spaces;word-spacing:0px;background-color:rgb(49,51,56);text-decoration-style:initial;text-decoration-color:initial"></span>Hello , I am Atharv Dubey a sophomore studying ECE at VJTI,Mumbai and here is my patch for</div><div>the getting started assignment<br></div><div><br></div><div>diff --git a/testsuites/samples/hello/init.c b/testsuites/samples/hello/init.c</div>new file mode 100644<br>index 0000000000..2f4029e8d8<br>--- /dev/null<br>+++ b/testsuites/samples/hello/init.c<br>@@ -0,0 +1,89 @@<br>+/* SPDX-License-Identifier: BSD-2-Clause */<br>+<br>+/*<br>+ *  COPYRIGHT (c) 1989-2012.<br>+ *  On-Line Applications Research Corporation (OAR).<br>+ *<br>+ * Redistribution and use in source and binary forms, with or without<br>+ * modification, are permitted provided that the following conditions<br>+ * are met:<br>+ * 1. Redistributions of source code must retain the above copyright<br>+ *    notice, this list of conditions and the following disclaimer.<br>+ * 2. Redistributions in binary form must reproduce the above copyright<br>+ *    notice, this list of conditions and the following disclaimer in the<br>+ *    documentation and/or other materials provided with the distribution.<br>+ *<br>+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"<br>+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE<br>+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE<br>+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE<br>+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR<br>+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF<br>+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS<br>+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN<br>+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)<br>+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE<br>+ * POSSIBILITY OF SUCH DAMAGE.<br>+ */<br>+<br>+// #ifdef HAVE_CONFIG_H<br>+// #include "config.h"<br>+// #endif<br>+<br>+// #include <rtems.h><br>+// #include <tmacros.h><br>+<br>+// const char rtems_test_name[] = "HELLO WORLD";<br>+<br>+// static rtems_task Init(<br>+//   rtems_task_argument ignored<br>+// )<br>+// {<br>+//   rtems_print_printer_fprintf_putc(&rtems_test_printer);<br>+//   TEST_BEGIN();<br>+//   printf( "Hello from Atharv Dubey\n" );<br>+//   TEST_END();<br>+//   rtems_test_exit( 0 );<br>+// }<br>+<br>+<br>+// /* NOTICE: the clock driver is explicitly disabled */<br>+// #define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER<br>+// #define CONFIGURE_APPLICATION_NEEDS_SIMPLE_CONSOLE_DRIVER<br>+<br>+// #define CONFIGURE_MAXIMUM_TASKS            1<br>+<br>+// #define CONFIGURE_RTEMS_INIT_TASKS_TABLE<br>+<br>+// #define CONFIGURE_INIT_TASK_ATTRIBUTES RTEMS_FLOATING_POINT<br>+<br>+// #define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION<br>+<br>+// #define CONFIGURE_INIT<br>+// #include <rtems/confdefs.h> <br>+<br>+<br>+<br>+<br>+#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER<br>+#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER<br>+<br>+#define CONFIGURE_UNLIMITED_OBJECTS<br>+#define CONFIGURE_UNIFIED_WORK_AREAS<br>+<br>+#define CONFIGURE_RTEMS_INIT_TASKS_TABLE<br>+<br>+#define CONFIGURE_INIT<br>+<br>+#include <rtems/confdefs.h> <br>+#include <rtems.h><br>+#include <stdlib.h><br>+#include <stdio.h><br>+<br>+rtems_task Init(<br>+  rtems_task_argument ignored<br>+)<br>+{<br>+  printf( "\nHello World from Atharv Dubey !!!\n" );<br>+  exit( 0 );<br>+}<br></div>