mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-26 15:26:43 +00:00
Make OSInstall run LimineCFGMake on UEFI installs.
This commit is contained in:
parent
ff06fa23a3
commit
6baab750b4
1 changed files with 9 additions and 2 deletions
|
@ -114,7 +114,6 @@ U0 OSUpgrade()
|
|||
{
|
||||
I64 drv_let, ch;
|
||||
U8 *st, *port_st;
|
||||
I64 res_num;
|
||||
CTask *task;
|
||||
|
||||
task = User;
|
||||
|
@ -192,6 +191,8 @@ U0 OSUpgrade()
|
|||
BootMHDIns(drv_let);
|
||||
}
|
||||
}
|
||||
else
|
||||
LimineCFGMake(drv_let);
|
||||
|
||||
WinVert(task->win_top, Fs->win_bottom);
|
||||
Kill(task);
|
||||
|
@ -318,6 +319,9 @@ U0 VMInstallWiz()
|
|||
else
|
||||
BootMHDIns('C');
|
||||
}
|
||||
else
|
||||
LimineCFGMake('C');
|
||||
|
||||
}
|
||||
|
||||
WinVert(task->win_top, Fs->win_bottom);
|
||||
|
@ -328,7 +332,7 @@ U0 RegularInstallWiz()
|
|||
{
|
||||
I64 drv_let;
|
||||
U8 *st, *port_st;
|
||||
I64 ch, res_num;
|
||||
I64 ch;
|
||||
CTask *task;
|
||||
|
||||
task = User;
|
||||
|
@ -425,6 +429,9 @@ U0 RegularInstallWiz()
|
|||
BootMHDIns(drv_let);
|
||||
}
|
||||
}
|
||||
else
|
||||
LimineCFGMake(drv_let);
|
||||
|
||||
WinVert(task->win_top, Fs->win_bottom);
|
||||
Kill(task);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue