mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[SETUPLIB] Move the initialization of other default values into InitializeSetup()
This commit is contained in:
parent
c9c5fd1a18
commit
9b9065df52
1 changed files with 25 additions and 29 deletions
|
@ -104,7 +104,7 @@ CheckUnattendedSetup(
|
||||||
|
|
||||||
INF_FreeData(Value);
|
INF_FreeData(Value);
|
||||||
|
|
||||||
/* Search for 'DestinationDiskNumber' in the 'Unattend' section */
|
/* Search for 'DestinationDiskNumber' */
|
||||||
if (!SpInfFindFirstLine(UnattendInf, L"Unattend", L"DestinationDiskNumber", &Context))
|
if (!SpInfFindFirstLine(UnattendInf, L"Unattend", L"DestinationDiskNumber", &Context))
|
||||||
{
|
{
|
||||||
DPRINT("SpInfFindFirstLine() failed for key 'DestinationDiskNumber'\n");
|
DPRINT("SpInfFindFirstLine() failed for key 'DestinationDiskNumber'\n");
|
||||||
|
@ -119,7 +119,7 @@ CheckUnattendedSetup(
|
||||||
|
|
||||||
pSetupData->DestinationDiskNumber = (LONG)IntValue;
|
pSetupData->DestinationDiskNumber = (LONG)IntValue;
|
||||||
|
|
||||||
/* Search for 'DestinationPartitionNumber' in the 'Unattend' section */
|
/* Search for 'DestinationPartitionNumber' */
|
||||||
if (!SpInfFindFirstLine(UnattendInf, L"Unattend", L"DestinationPartitionNumber", &Context))
|
if (!SpInfFindFirstLine(UnattendInf, L"Unattend", L"DestinationPartitionNumber", &Context))
|
||||||
{
|
{
|
||||||
DPRINT("SpInfFindFirstLine() failed for key 'DestinationPartitionNumber'\n");
|
DPRINT("SpInfFindFirstLine() failed for key 'DestinationPartitionNumber'\n");
|
||||||
|
@ -134,56 +134,47 @@ CheckUnattendedSetup(
|
||||||
|
|
||||||
pSetupData->DestinationPartitionNumber = (LONG)IntValue;
|
pSetupData->DestinationPartitionNumber = (LONG)IntValue;
|
||||||
|
|
||||||
/* Search for 'InstallationDirectory' in the 'Unattend' section (optional) */
|
/* Search for 'InstallationDirectory' (optional) */
|
||||||
if (SpInfFindFirstLine(UnattendInf, L"Unattend", L"InstallationDirectory", &Context))
|
if (SpInfFindFirstLine(UnattendInf, L"Unattend", L"InstallationDirectory", &Context))
|
||||||
{
|
{
|
||||||
/* Get pointer 'InstallationDirectory' key */
|
if (INF_GetData(&Context, NULL, &Value))
|
||||||
if (!INF_GetData(&Context, NULL, &Value))
|
{
|
||||||
|
RtlStringCchCopyW(pSetupData->InstallationDirectory,
|
||||||
|
ARRAYSIZE(pSetupData->InstallationDirectory),
|
||||||
|
Value);
|
||||||
|
INF_FreeData(Value);
|
||||||
|
}
|
||||||
|
else
|
||||||
{
|
{
|
||||||
DPRINT("INF_GetData() failed for key 'InstallationDirectory'\n");
|
DPRINT("INF_GetData() failed for key 'InstallationDirectory'\n");
|
||||||
goto Quit;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
RtlStringCchCopyW(pSetupData->InstallationDirectory,
|
|
||||||
ARRAYSIZE(pSetupData->InstallationDirectory),
|
|
||||||
Value);
|
|
||||||
|
|
||||||
INF_FreeData(Value);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
IsUnattendedSetup = TRUE;
|
IsUnattendedSetup = TRUE;
|
||||||
DPRINT("Running unattended setup\n");
|
DPRINT("Running unattended setup\n");
|
||||||
|
|
||||||
/* Search for 'BootLoaderLocation' in the 'Unattend' section */
|
/* Search for 'BootLoaderLocation' (optional) */
|
||||||
pSetupData->BootLoaderLocation = 2; // Default to "system partition"
|
|
||||||
if (SpInfFindFirstLine(UnattendInf, L"Unattend", L"BootLoaderLocation", &Context))
|
if (SpInfFindFirstLine(UnattendInf, L"Unattend", L"BootLoaderLocation", &Context))
|
||||||
{
|
{
|
||||||
if (SpInfGetIntField(&Context, 1, &IntValue))
|
if (SpInfGetIntField(&Context, 1, &IntValue))
|
||||||
{
|
|
||||||
pSetupData->BootLoaderLocation = IntValue;
|
pSetupData->BootLoaderLocation = IntValue;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Search for 'FormatPartition' in the 'Unattend' section */
|
/* Search for 'FormatPartition' (optional) */
|
||||||
pSetupData->FormatPartition = 0;
|
|
||||||
if (SpInfFindFirstLine(UnattendInf, L"Unattend", L"FormatPartition", &Context))
|
if (SpInfFindFirstLine(UnattendInf, L"Unattend", L"FormatPartition", &Context))
|
||||||
{
|
{
|
||||||
if (SpInfGetIntField(&Context, 1, &IntValue))
|
if (SpInfGetIntField(&Context, 1, &IntValue))
|
||||||
{
|
|
||||||
pSetupData->FormatPartition = IntValue;
|
pSetupData->FormatPartition = IntValue;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pSetupData->AutoPartition = 0;
|
/* Search for 'AutoPartition' (optional) */
|
||||||
if (SpInfFindFirstLine(UnattendInf, L"Unattend", L"AutoPartition", &Context))
|
if (SpInfFindFirstLine(UnattendInf, L"Unattend", L"AutoPartition", &Context))
|
||||||
{
|
{
|
||||||
if (SpInfGetIntField(&Context, 1, &IntValue))
|
if (SpInfGetIntField(&Context, 1, &IntValue))
|
||||||
{
|
|
||||||
pSetupData->AutoPartition = IntValue;
|
pSetupData->AutoPartition = IntValue;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Search for LocaleID in the 'Unattend' section */
|
/* Search for 'LocaleID' (optional) */
|
||||||
if (SpInfFindFirstLine(UnattendInf, L"Unattend", L"LocaleID", &Context))
|
if (SpInfFindFirstLine(UnattendInf, L"Unattend", L"LocaleID", &Context))
|
||||||
{
|
{
|
||||||
if (INF_GetData(&Context, NULL, &Value))
|
if (INF_GetData(&Context, NULL, &Value))
|
||||||
|
@ -193,17 +184,14 @@ CheckUnattendedSetup(
|
||||||
ARRAYSIZE(pSetupData->LocaleID),
|
ARRAYSIZE(pSetupData->LocaleID),
|
||||||
L"%08lx", Id);
|
L"%08lx", Id);
|
||||||
INF_FreeData(Value);
|
INF_FreeData(Value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Search for FsType in the 'Unattend' section */
|
/* Search for 'FsType' (optional) */
|
||||||
pSetupData->FsType = 0;
|
|
||||||
if (SpInfFindFirstLine(UnattendInf, L"Unattend", L"FsType", &Context))
|
if (SpInfFindFirstLine(UnattendInf, L"Unattend", L"FsType", &Context))
|
||||||
{
|
{
|
||||||
if (SpInfGetIntField(&Context, 1, &IntValue))
|
if (SpInfGetIntField(&Context, 1, &IntValue))
|
||||||
{
|
|
||||||
pSetupData->FsType = IntValue;
|
pSetupData->FsType = IntValue;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Quit:
|
Quit:
|
||||||
|
@ -1021,6 +1009,14 @@ InitializeSetup(
|
||||||
DPRINT1("SourceRootPath (1): '%wZ'\n", &pSetupData->SourceRootPath);
|
DPRINT1("SourceRootPath (1): '%wZ'\n", &pSetupData->SourceRootPath);
|
||||||
DPRINT1("SourceRootDir (1): '%wZ'\n", &pSetupData->SourceRootDir);
|
DPRINT1("SourceRootDir (1): '%wZ'\n", &pSetupData->SourceRootDir);
|
||||||
|
|
||||||
|
/* Set up default values */
|
||||||
|
pSetupData->DestinationDiskNumber = 0;
|
||||||
|
pSetupData->DestinationPartitionNumber = 1;
|
||||||
|
pSetupData->BootLoaderLocation = 2; // Default to "System partition"
|
||||||
|
pSetupData->FormatPartition = 0;
|
||||||
|
pSetupData->AutoPartition = 0;
|
||||||
|
pSetupData->FsType = 0;
|
||||||
|
|
||||||
/* Load 'txtsetup.sif' from the installation media */
|
/* Load 'txtsetup.sif' from the installation media */
|
||||||
Error = LoadSetupInf(pSetupData);
|
Error = LoadSetupInf(pSetupData);
|
||||||
if (Error != ERROR_SUCCESS)
|
if (Error != ERROR_SUCCESS)
|
||||||
|
|
Loading…
Reference in a new issue