mirror of
https://github.com/reactos/reactos.git
synced 2025-06-07 02:10:36 +00:00
[USETUP]
- Don't quit if setup doesn't find a non-PnP HDD (until PnP stuff works better) svn path=/branches/usb-bringup-trunk/; revision=55351
This commit is contained in:
parent
823a29d5e3
commit
b3994ae487
1 changed files with 4 additions and 3 deletions
|
@ -728,19 +728,19 @@ LanguagePage(PINPUT_RECORD Ir)
|
||||||
static PAGE_NUMBER
|
static PAGE_NUMBER
|
||||||
SetupStartPage(PINPUT_RECORD Ir)
|
SetupStartPage(PINPUT_RECORD Ir)
|
||||||
{
|
{
|
||||||
SYSTEM_DEVICE_INFORMATION Sdi;
|
//SYSTEM_DEVICE_INFORMATION Sdi;
|
||||||
NTSTATUS Status;
|
NTSTATUS Status;
|
||||||
WCHAR FileNameBuffer[MAX_PATH];
|
WCHAR FileNameBuffer[MAX_PATH];
|
||||||
INFCONTEXT Context;
|
INFCONTEXT Context;
|
||||||
PWCHAR Value;
|
PWCHAR Value;
|
||||||
UINT ErrorLine;
|
UINT ErrorLine;
|
||||||
ULONG ReturnSize;
|
//ULONG ReturnSize;
|
||||||
PGENERIC_LIST_ENTRY ListEntry;
|
PGENERIC_LIST_ENTRY ListEntry;
|
||||||
INT IntValue;
|
INT IntValue;
|
||||||
|
|
||||||
CONSOLE_SetStatusText(MUIGetString(STRING_PLEASEWAIT));
|
CONSOLE_SetStatusText(MUIGetString(STRING_PLEASEWAIT));
|
||||||
|
|
||||||
|
#if 0
|
||||||
/* Check whether a harddisk is available */
|
/* Check whether a harddisk is available */
|
||||||
Status = NtQuerySystemInformation(SystemDeviceInformation,
|
Status = NtQuerySystemInformation(SystemDeviceInformation,
|
||||||
&Sdi,
|
&Sdi,
|
||||||
|
@ -759,6 +759,7 @@ SetupStartPage(PINPUT_RECORD Ir)
|
||||||
MUIDisplayError(ERROR_NO_HDD, Ir, POPUP_WAIT_ENTER);
|
MUIDisplayError(ERROR_NO_HDD, Ir, POPUP_WAIT_ENTER);
|
||||||
return QUIT_PAGE;
|
return QUIT_PAGE;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Get the source path and source root path */
|
/* Get the source path and source root path */
|
||||||
Status = GetSourcePaths(&SourcePath,
|
Status = GetSourcePaths(&SourcePath,
|
||||||
|
|
Loading…
Reference in a new issue