Skip to content

Commit 4fab19d

Browse files
committed
x86_nano: Silence serial output
1 parent 7a70bc8 commit 4fab19d

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

src/platform/x86_nano/kernel_start.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
extern void default_stdout_handlers();
88
extern void __platform_init();
99

10-
#define MYINFO(X,...) INFO("x86_nano", X, ##__VA_ARGS__)
11-
1210
extern "C" {
1311
void __init_serial1();
1412
void __init_sanity_checks();
@@ -60,8 +58,6 @@ extern "C" {
6058

6159
__platform_init();
6260

63-
MYINFO("Starting %s\n", Service::name().c_str());
64-
6561
// Start the service
6662
Service::start();
6763

src/platform/x86_nano/platform.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ void default_stdout_handlers()
2222
}
2323

2424
void __platform_init(){
25+
// FIXME: set up minimal CPU exception handlers
2526
// TODO: set up minimal CPU exception handlers
2627
}
2728

0 commit comments

Comments
 (0)