소스 검색

[shell_banner] Avoid printing Ctrl-B prompt if BANNER_TIMEOUT <= 0

Signed-off-by: Marty Connor <mdc@etherboot.org>
tags/v1.20.1
Marty Connor 14 년 전
부모
커밋
422f3a6116
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4
    0
      src/hci/shell_banner.c

+ 4
- 0
src/hci/shell_banner.c 파일 보기

@@ -41,6 +41,10 @@ int shell_banner ( void ) {
41 41
 	int wait_count;
42 42
 	int key;
43 43
 
44
+	if ( BANNER_TIMEOUT <=  0 ) {
45
+		return enter_shell;
46
+	}
47
+
44 48
 	printf ( "\nPress Ctrl-B for the gPXE command line..." );
45 49
 
46 50
 	/* Wait for key */

Loading…
취소
저장