浏览代码

[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
 

正在加载...
取消
保存