From c4f3d2d296a2ae91ce6a1698b97a907f181fda17 Mon Sep 17 00:00:00 2001 From: Xiang Xiao Date: Tue, 13 Jul 2021 03:07:25 +0800 Subject: [PATCH] Revert "[Boottime] add syslog info in system bootup stages" This reverts commit b8423e96818f1f6efed3d4984bb81231f1d34f54. --- sched/init/nx_bringup.c | 1 - sched/init/nx_start.c | 2 -- 2 files changed, 3 deletions(-) diff --git a/sched/init/nx_bringup.c b/sched/init/nx_bringup.c index 6815dd1729d..7e6d6f769f8 100644 --- a/sched/init/nx_bringup.c +++ b/sched/init/nx_bringup.c @@ -252,7 +252,6 @@ static inline void nx_start_application(void) */ sinfo("Starting init thread\n"); - syslog(LOG_INFO, "Starting init thread\n"); #ifdef CONFIG_BUILD_PROTECTED DEBUGASSERT(USERSPACE->us_entrypoint != NULL); diff --git a/sched/init/nx_start.c b/sched/init/nx_start.c index f1fb20f8799..eb154855fe7 100644 --- a/sched/init/nx_start.c +++ b/sched/init/nx_start.c @@ -345,7 +345,6 @@ void nx_start(void) int i; sinfo("Entry\n"); - syslog(LOG_INFO, "NuttX RTOS Initializtion Entry\n"); /* Boot up is complete */ @@ -796,7 +795,6 @@ void nx_start(void) /* When control is return to this point, the system is idle. */ sinfo("CPU0: Beginning Idle Loop\n"); - syslog(LOG_INFO, "CPU0: Beginning Idle Loop\n"); for (; ; ) { #if defined(CONFIG_STACK_COLORATION) && CONFIG_STACK_USAGE_SAFE_PERCENT > 0