ソースを参照

[main] Defer "initialising devices" message until initialising devices

Allow the "initialising devices" message to show up on consoles which
require initialisation, by deferring it until after initialise() has
completed.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
tags/v1.20.1
Michael Brown 10年前
コミット
3102866a7f
1個のファイルの変更3行の追加1行の削除
  1. 3
    1
      src/core/main.c

+ 3
- 1
src/core/main.c ファイルの表示

@@ -27,9 +27,11 @@ FILE_LICENCE ( GPL2_OR_LATER );
27 27
  */
28 28
 __asmcall int main ( void ) {
29 29
 
30
+	/* Perform one-time-only initialisation (e.g. heap) */
31
+	initialise();
32
+
30 33
 	/* Some devices take an unreasonably long time to initialise */
31 34
 	printf ( PRODUCT_SHORT_NAME " initialising devices..." );
32
-	initialise();
33 35
 	startup();
34 36
 	printf ( "ok\n" );
35 37
 

読み込み中…
キャンセル
保存