.

common/console.c

1    static void console_update_silent(void)
2    {
3    #ifdef CONFIG_SILENT_CONSOLE
4            if (getenv("silent") != NULL)
5                    gd->flags |= GD_FLG_SILENT;
6            else
7                    gd->flags &= ~GD_FLG_SILENT;
8    #endif
9    }
  • 3번 줄의 CONFIG_SILENT_CONSOLE가 정의가 되어 있지 않아 console_update_silent함수는 아무것도 수행하지 않습니다.

results matching ""

    No results matching ""