Hello, I am a fresh graduate from Brazil. I have developed a simple x86_64 kernel in Rust in my free time and thus I am interested in the x86_64 BSP project.
Although I did manage to compile the x86_64 BSP, the hello.exe test was hanging, so I did the task with the i386 BSP. I definitely need to take a further look into why that is since one of the commits mentions an addition that should make the test run successfully, it could be something about the way I tried to run it. --- testsuites/samples/hello/init.c | 1 + 1 file changed, 1 insertion(+) diff --git a/testsuites/samples/hello/init.c b/testsuites/samples/hello/init.c index 83f6342ab3..69d6644784 100644 --- a/testsuites/samples/hello/init.c +++ b/testsuites/samples/hello/init.c @@ -42,6 +42,7 @@ static rtems_task Init( rtems_print_printer_fprintf_putc(&rtems_test_printer); TEST_BEGIN(); printf( "Hello World\n" ); + printf( "Hello From i386\n" ); TEST_END(); rtems_test_exit( 0 ); } -- 2.43.0
_______________________________________________ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel