mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
[USETUP][SETUPLIB] Code refactoring.
- Move several global setup variables into a structure "USETUP_DATA", similar to the syssetup structure "SETUPDATA" (or the WIP 1st-stage installer structure of the same name), so that these variables can be set easily by different helper setup functions; - Move CheckUnattendedSetup() and GetSourcePaths() to setuplib and make CheckUnattendedSetup() use the USETUP_DATA structure; - Add a LoadSetupInf() function that loads the txtsetup.sif file (factoring out the corresponding code in USETUP); - Add a InstallSetupInfFile() function (that I'll probably rename later on) whose purpose is to create a valid "$winnt$.inf" setup installation file in the ReactOS\system32 directory, which should help the 2nd-stage installer to correctly retrieve the source installation media we used during 1st-stage, and contain the unattended setup lines copied from unattend.inf. This is done in a Windows-compatible way. svn path=/branches/setup_improvements/; revision=75518 [USETUP] Close the txtsetup.sif file at the end of the operations. svn path=/branches/setup_improvements/; revision=75539
This commit is contained in:
parent
11500a0033
commit
7e248feabf
4 changed files with 786 additions and 461 deletions
|
@ -12,6 +12,7 @@ list(APPEND SOURCE
|
|||
partlist.c
|
||||
registry.c
|
||||
regutil.c
|
||||
setuplib.c
|
||||
precomp.h)
|
||||
|
||||
add_library(setuplib ${SOURCE})
|
||||
|
|
515
base/setup/lib/setuplib.c
Normal file
515
base/setup/lib/setuplib.c
Normal file
|
@ -0,0 +1,515 @@
|
|||
/*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS Setup Library
|
||||
* FILE: base/setup/lib/setuplib.c
|
||||
* PURPOSE: Setup Library - Main initialization helpers
|
||||
* PROGRAMMERS: Casper S. Hornstrup (chorns@users.sourceforge.net)
|
||||
* Hermes Belusca-Maito (hermes.belusca@sfr.fr)
|
||||
*/
|
||||
|
||||
/* INCLUDES *****************************************************************/
|
||||
|
||||
#include "precomp.h"
|
||||
#include "filesup.h"
|
||||
#include "infsupp.h"
|
||||
#include "inicache.h"
|
||||
|
||||
#include "setuplib.h"
|
||||
|
||||
// HACK!
|
||||
#include <strsafe.h>
|
||||
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
|
||||
/* GLOBALS ******************************************************************/
|
||||
|
||||
/* FUNCTIONS ****************************************************************/
|
||||
|
||||
VOID
|
||||
CheckUnattendedSetup(
|
||||
IN OUT PUSETUP_DATA pSetupData)
|
||||
{
|
||||
INFCONTEXT Context;
|
||||
HINF UnattendInf;
|
||||
UINT ErrorLine;
|
||||
INT IntValue;
|
||||
PWCHAR Value;
|
||||
WCHAR UnattendInfPath[MAX_PATH];
|
||||
|
||||
CombinePaths(UnattendInfPath, ARRAYSIZE(UnattendInfPath), 2,
|
||||
pSetupData->SourcePath.Buffer, L"unattend.inf");
|
||||
|
||||
if (DoesFileExist(NULL, UnattendInfPath) == FALSE)
|
||||
{
|
||||
DPRINT("Does not exist: %S\n", UnattendInfPath);
|
||||
return;
|
||||
}
|
||||
|
||||
/* Load 'unattend.inf' from installation media */
|
||||
UnattendInf = SetupOpenInfFileExW(UnattendInfPath,
|
||||
NULL,
|
||||
INF_STYLE_WIN4,
|
||||
pSetupData->LanguageId,
|
||||
&ErrorLine);
|
||||
|
||||
if (UnattendInf == INVALID_HANDLE_VALUE)
|
||||
{
|
||||
DPRINT("SetupOpenInfFileExW() failed\n");
|
||||
return;
|
||||
}
|
||||
|
||||
/* Open 'Unattend' section */
|
||||
if (!SetupFindFirstLineW(UnattendInf, L"Unattend", L"Signature", &Context))
|
||||
{
|
||||
DPRINT("SetupFindFirstLineW() failed for section 'Unattend'\n");
|
||||
goto Quit;
|
||||
}
|
||||
|
||||
/* Get pointer 'Signature' key */
|
||||
if (!INF_GetData(&Context, NULL, &Value))
|
||||
{
|
||||
DPRINT("INF_GetData() failed for key 'Signature'\n");
|
||||
goto Quit;
|
||||
}
|
||||
|
||||
/* Check 'Signature' string */
|
||||
if (_wcsicmp(Value, L"$ReactOS$") != 0)
|
||||
{
|
||||
DPRINT("Signature not $ReactOS$\n");
|
||||
INF_FreeData(Value);
|
||||
goto Quit;
|
||||
}
|
||||
|
||||
INF_FreeData(Value);
|
||||
|
||||
/* Check if Unattend setup is enabled */
|
||||
if (!SetupFindFirstLineW(UnattendInf, L"Unattend", L"UnattendSetupEnabled", &Context))
|
||||
{
|
||||
DPRINT("Can't find key 'UnattendSetupEnabled'\n");
|
||||
goto Quit;
|
||||
}
|
||||
|
||||
if (!INF_GetData(&Context, NULL, &Value))
|
||||
{
|
||||
DPRINT("Can't read key 'UnattendSetupEnabled'\n");
|
||||
goto Quit;
|
||||
}
|
||||
|
||||
if (_wcsicmp(Value, L"yes") != 0)
|
||||
{
|
||||
DPRINT("Unattend setup is disabled by 'UnattendSetupEnabled' key!\n");
|
||||
INF_FreeData(Value);
|
||||
goto Quit;
|
||||
}
|
||||
|
||||
INF_FreeData(Value);
|
||||
|
||||
/* Search for 'DestinationDiskNumber' in the 'Unattend' section */
|
||||
if (!SetupFindFirstLineW(UnattendInf, L"Unattend", L"DestinationDiskNumber", &Context))
|
||||
{
|
||||
DPRINT("SetupFindFirstLine() failed for key 'DestinationDiskNumber'\n");
|
||||
goto Quit;
|
||||
}
|
||||
|
||||
if (!SetupGetIntField(&Context, 1, &IntValue))
|
||||
{
|
||||
DPRINT("SetupGetIntField() failed for key 'DestinationDiskNumber'\n");
|
||||
goto Quit;
|
||||
}
|
||||
|
||||
pSetupData->DestinationDiskNumber = (LONG)IntValue;
|
||||
|
||||
/* Search for 'DestinationPartitionNumber' in the 'Unattend' section */
|
||||
if (!SetupFindFirstLineW(UnattendInf, L"Unattend", L"DestinationPartitionNumber", &Context))
|
||||
{
|
||||
DPRINT("SetupFindFirstLine() failed for key 'DestinationPartitionNumber'\n");
|
||||
goto Quit;
|
||||
}
|
||||
|
||||
if (!SetupGetIntField(&Context, 1, &IntValue))
|
||||
{
|
||||
DPRINT("SetupGetIntField() failed for key 'DestinationPartitionNumber'\n");
|
||||
goto Quit;
|
||||
}
|
||||
|
||||
pSetupData->DestinationPartitionNumber = (LONG)IntValue;
|
||||
|
||||
/* Search for 'InstallationDirectory' in the 'Unattend' section (optional) */
|
||||
if (SetupFindFirstLineW(UnattendInf, L"Unattend", L"InstallationDirectory", &Context))
|
||||
{
|
||||
/* Get pointer 'InstallationDirectory' key */
|
||||
if (!INF_GetData(&Context, NULL, &Value))
|
||||
{
|
||||
DPRINT("INF_GetData() failed for key 'InstallationDirectory'\n");
|
||||
goto Quit;
|
||||
}
|
||||
wcscpy(pSetupData->InstallationDirectory, Value);
|
||||
INF_FreeData(Value);
|
||||
}
|
||||
|
||||
IsUnattendedSetup = TRUE;
|
||||
DPRINT("Running unattended setup\n");
|
||||
|
||||
/* Search for 'MBRInstallType' in the 'Unattend' section */
|
||||
pSetupData->MBRInstallType = -1;
|
||||
if (SetupFindFirstLineW(UnattendInf, L"Unattend", L"MBRInstallType", &Context))
|
||||
{
|
||||
if (SetupGetIntField(&Context, 1, &IntValue))
|
||||
{
|
||||
pSetupData->MBRInstallType = IntValue;
|
||||
}
|
||||
}
|
||||
|
||||
/* Search for 'FormatPartition' in the 'Unattend' section */
|
||||
pSetupData->FormatPartition = 0;
|
||||
if (SetupFindFirstLineW(UnattendInf, L"Unattend", L"FormatPartition", &Context))
|
||||
{
|
||||
if (SetupGetIntField(&Context, 1, &IntValue))
|
||||
{
|
||||
pSetupData->FormatPartition = IntValue;
|
||||
}
|
||||
}
|
||||
|
||||
pSetupData->AutoPartition = 0;
|
||||
if (SetupFindFirstLineW(UnattendInf, L"Unattend", L"AutoPartition", &Context))
|
||||
{
|
||||
if (SetupGetIntField(&Context, 1, &IntValue))
|
||||
{
|
||||
pSetupData->AutoPartition = IntValue;
|
||||
}
|
||||
}
|
||||
|
||||
/* Search for LocaleID in the 'Unattend' section */
|
||||
if (SetupFindFirstLineW(UnattendInf, L"Unattend", L"LocaleID", &Context))
|
||||
{
|
||||
if (INF_GetData(&Context, NULL, &Value))
|
||||
{
|
||||
LONG Id = wcstol(Value, NULL, 16);
|
||||
swprintf(pSetupData->LocaleID, L"%08lx", Id);
|
||||
INF_FreeData(Value);
|
||||
}
|
||||
}
|
||||
|
||||
Quit:
|
||||
SetupCloseInfFile(UnattendInf);
|
||||
}
|
||||
|
||||
VOID
|
||||
InstallSetupInfFile(
|
||||
IN OUT PUSETUP_DATA pSetupData)
|
||||
{
|
||||
NTSTATUS Status;
|
||||
PINICACHE IniCache;
|
||||
|
||||
#if 0 // HACK FIXME!
|
||||
PINICACHE UnattendCache;
|
||||
PINICACHEITERATOR Iterator;
|
||||
#else
|
||||
// PCWSTR CrLf = L"\r\n";
|
||||
PCSTR CrLf = "\r\n";
|
||||
HANDLE FileHandle, UnattendFileHandle, SectionHandle;
|
||||
FILE_STANDARD_INFORMATION FileInfo;
|
||||
ULONG FileSize;
|
||||
PVOID ViewBase;
|
||||
UNICODE_STRING FileName;
|
||||
OBJECT_ATTRIBUTES ObjectAttributes;
|
||||
IO_STATUS_BLOCK IoStatusBlock;
|
||||
#endif
|
||||
|
||||
PINICACHESECTION IniSection;
|
||||
WCHAR PathBuffer[MAX_PATH];
|
||||
WCHAR UnattendInfPath[MAX_PATH];
|
||||
|
||||
/* Create a $winnt$.inf file with default entries */
|
||||
IniCache = IniCacheCreate();
|
||||
if (!IniCache)
|
||||
return;
|
||||
|
||||
IniSection = IniCacheAppendSection(IniCache, L"SetupParams");
|
||||
if (IniSection)
|
||||
{
|
||||
/* Key "skipmissingfiles" */
|
||||
// StringCchPrintfW(PathBuffer, ARRAYSIZE(PathBuffer),
|
||||
// L"\"%s\"", L"WinNt5.2");
|
||||
// IniCacheInsertKey(IniSection, NULL, INSERT_LAST,
|
||||
// L"Version", PathBuffer);
|
||||
}
|
||||
|
||||
IniSection = IniCacheAppendSection(IniCache, L"Data");
|
||||
if (IniSection)
|
||||
{
|
||||
StringCchPrintfW(PathBuffer, ARRAYSIZE(PathBuffer),
|
||||
L"\"%s\"", IsUnattendedSetup ? L"yes" : L"no");
|
||||
IniCacheInsertKey(IniSection, NULL, INSERT_LAST,
|
||||
L"UnattendedInstall", PathBuffer);
|
||||
|
||||
// "floppylessbootpath" (yes/no)
|
||||
|
||||
StringCchPrintfW(PathBuffer, ARRAYSIZE(PathBuffer),
|
||||
L"\"%s\"", L"winnt");
|
||||
IniCacheInsertKey(IniSection, NULL, INSERT_LAST,
|
||||
L"ProductType", PathBuffer);
|
||||
|
||||
StringCchPrintfW(PathBuffer, ARRAYSIZE(PathBuffer),
|
||||
L"\"%s\\\"", pSetupData->SourceRootPath.Buffer);
|
||||
IniCacheInsertKey(IniSection, NULL, INSERT_LAST,
|
||||
L"SourcePath", PathBuffer);
|
||||
|
||||
// "floppyless" ("0")
|
||||
}
|
||||
|
||||
#if 0
|
||||
|
||||
/* TODO: Append the standard unattend.inf file */
|
||||
CombinePaths(UnattendInfPath, ARRAYSIZE(UnattendInfPath), 2, pSetupData->SourcePath.Buffer, L"unattend.inf");
|
||||
if (DoesFileExist(NULL, UnattendInfPath) == FALSE)
|
||||
{
|
||||
DPRINT("Does not exist: %S\n", UnattendInfPath);
|
||||
goto Quit;
|
||||
}
|
||||
|
||||
Status = IniCacheLoad(&UnattendCache, UnattendInfPath, FALSE);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("Cannot load %S as an INI file!\n", UnattendInfPath);
|
||||
goto Quit;
|
||||
}
|
||||
|
||||
IniCacheDestroy(UnattendCache);
|
||||
|
||||
Quit:
|
||||
CombinePaths(PathBuffer, ARRAYSIZE(PathBuffer), 2,
|
||||
pSetupData->DestinationPath.Buffer, L"System32\\$winnt$.inf");
|
||||
IniCacheSave(IniCache, PathBuffer);
|
||||
IniCacheDestroy(IniCache);
|
||||
|
||||
#else
|
||||
|
||||
CombinePaths(PathBuffer, ARRAYSIZE(PathBuffer), 2,
|
||||
pSetupData->DestinationPath.Buffer, L"System32\\$winnt$.inf");
|
||||
IniCacheSave(IniCache, PathBuffer);
|
||||
IniCacheDestroy(IniCache);
|
||||
|
||||
/* TODO: Append the standard unattend.inf file */
|
||||
CombinePaths(UnattendInfPath, ARRAYSIZE(UnattendInfPath), 2,
|
||||
pSetupData->SourcePath.Buffer, L"unattend.inf");
|
||||
if (DoesFileExist(NULL, UnattendInfPath) == FALSE)
|
||||
{
|
||||
DPRINT("Does not exist: %S\n", UnattendInfPath);
|
||||
return;
|
||||
}
|
||||
|
||||
RtlInitUnicodeString(&FileName, PathBuffer);
|
||||
InitializeObjectAttributes(&ObjectAttributes,
|
||||
&FileName,
|
||||
OBJ_CASE_INSENSITIVE | OBJ_OPENIF,
|
||||
NULL,
|
||||
NULL);
|
||||
Status = NtOpenFile(&FileHandle,
|
||||
FILE_APPEND_DATA | SYNCHRONIZE,
|
||||
&ObjectAttributes,
|
||||
&IoStatusBlock,
|
||||
FILE_SHARE_READ,
|
||||
FILE_SYNCHRONOUS_IO_NONALERT | FILE_NON_DIRECTORY_FILE);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("Cannot load %S as an INI file!\n", PathBuffer);
|
||||
return;
|
||||
}
|
||||
|
||||
/* Query the file size */
|
||||
Status = NtQueryInformationFile(FileHandle,
|
||||
&IoStatusBlock,
|
||||
&FileInfo,
|
||||
sizeof(FileInfo),
|
||||
FileStandardInformation);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT("NtQueryInformationFile() failed (Status %lx)\n", Status);
|
||||
FileInfo.EndOfFile.QuadPart = 0ULL;
|
||||
}
|
||||
|
||||
Status = OpenAndMapFile(NULL,
|
||||
UnattendInfPath,
|
||||
&UnattendFileHandle,
|
||||
&SectionHandle,
|
||||
&ViewBase,
|
||||
&FileSize,
|
||||
FALSE);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("Cannot load %S !\n", UnattendInfPath);
|
||||
NtClose(FileHandle);
|
||||
return;
|
||||
}
|
||||
|
||||
/* Write to the INI file */
|
||||
|
||||
/* "\r\n" */
|
||||
Status = NtWriteFile(FileHandle,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
&IoStatusBlock,
|
||||
(PVOID)CrLf,
|
||||
2 * sizeof(CHAR), // 2 * sizeof(WCHAR),
|
||||
&FileInfo.EndOfFile,
|
||||
NULL);
|
||||
|
||||
Status = NtWriteFile(FileHandle,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
&IoStatusBlock,
|
||||
ViewBase,
|
||||
FileSize,
|
||||
NULL,
|
||||
NULL);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT("NtWriteFile() failed (Status %lx)\n", Status);
|
||||
}
|
||||
|
||||
/* Finally, unmap and close the file */
|
||||
UnMapFile(SectionHandle, ViewBase);
|
||||
NtClose(UnattendFileHandle);
|
||||
|
||||
NtClose(FileHandle);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
|
||||
NTSTATUS
|
||||
GetSourcePaths(
|
||||
OUT PUNICODE_STRING SourcePath,
|
||||
OUT PUNICODE_STRING SourceRootPath,
|
||||
OUT PUNICODE_STRING SourceRootDir)
|
||||
{
|
||||
NTSTATUS Status;
|
||||
OBJECT_ATTRIBUTES ObjectAttributes;
|
||||
UNICODE_STRING LinkName = RTL_CONSTANT_STRING(L"\\SystemRoot");
|
||||
UNICODE_STRING SourceName;
|
||||
WCHAR SourceBuffer[MAX_PATH] = L"";
|
||||
HANDLE Handle;
|
||||
ULONG Length;
|
||||
PWCHAR Ptr;
|
||||
|
||||
InitializeObjectAttributes(&ObjectAttributes,
|
||||
&LinkName,
|
||||
OBJ_CASE_INSENSITIVE,
|
||||
NULL,
|
||||
NULL);
|
||||
|
||||
Status = NtOpenSymbolicLinkObject(&Handle,
|
||||
SYMBOLIC_LINK_ALL_ACCESS,
|
||||
&ObjectAttributes);
|
||||
if (!NT_SUCCESS(Status))
|
||||
return Status;
|
||||
|
||||
RtlInitEmptyUnicodeString(&SourceName, SourceBuffer, sizeof(SourceBuffer));
|
||||
|
||||
Status = NtQuerySymbolicLinkObject(Handle,
|
||||
&SourceName,
|
||||
&Length);
|
||||
NtClose(Handle);
|
||||
|
||||
if (!NT_SUCCESS(Status))
|
||||
return Status;
|
||||
|
||||
RtlCreateUnicodeString(SourcePath,
|
||||
SourceName.Buffer);
|
||||
|
||||
/* Strip trailing directory */
|
||||
Ptr = wcsrchr(SourceName.Buffer, OBJ_NAME_PATH_SEPARATOR);
|
||||
if (Ptr)
|
||||
{
|
||||
RtlCreateUnicodeString(SourceRootDir, Ptr);
|
||||
*Ptr = UNICODE_NULL;
|
||||
}
|
||||
else
|
||||
{
|
||||
RtlCreateUnicodeString(SourceRootDir, L"");
|
||||
}
|
||||
|
||||
RtlCreateUnicodeString(SourceRootPath,
|
||||
SourceName.Buffer);
|
||||
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
ERROR_NUMBER
|
||||
LoadSetupInf(
|
||||
OUT HINF* SetupInf,
|
||||
IN OUT PUSETUP_DATA pSetupData)
|
||||
{
|
||||
INFCONTEXT Context;
|
||||
UINT ErrorLine;
|
||||
INT IntValue;
|
||||
PWCHAR Value;
|
||||
WCHAR FileNameBuffer[MAX_PATH];
|
||||
|
||||
CombinePaths(FileNameBuffer, ARRAYSIZE(FileNameBuffer), 2,
|
||||
pSetupData->SourcePath.Buffer, L"txtsetup.sif");
|
||||
|
||||
*SetupInf = SetupOpenInfFileExW(FileNameBuffer,
|
||||
NULL,
|
||||
INF_STYLE_WIN4,
|
||||
pSetupData->LanguageId,
|
||||
&ErrorLine);
|
||||
|
||||
if (*SetupInf == INVALID_HANDLE_VALUE)
|
||||
return ERROR_LOAD_TXTSETUPSIF;
|
||||
|
||||
/* Open 'Version' section */
|
||||
if (!SetupFindFirstLineW(*SetupInf, L"Version", L"Signature", &Context))
|
||||
return ERROR_CORRUPT_TXTSETUPSIF;
|
||||
|
||||
/* Get pointer 'Signature' key */
|
||||
if (!INF_GetData(&Context, NULL, &Value))
|
||||
return ERROR_CORRUPT_TXTSETUPSIF;
|
||||
|
||||
/* Check 'Signature' string */
|
||||
if (_wcsicmp(Value, L"$ReactOS$") != 0)
|
||||
{
|
||||
INF_FreeData(Value);
|
||||
return ERROR_SIGNATURE_TXTSETUPSIF;
|
||||
}
|
||||
|
||||
INF_FreeData(Value);
|
||||
|
||||
/* Open 'DiskSpaceRequirements' section */
|
||||
if (!SetupFindFirstLineW(*SetupInf, L"DiskSpaceRequirements", L"FreeSysPartDiskSpace", &Context))
|
||||
return ERROR_CORRUPT_TXTSETUPSIF;
|
||||
|
||||
pSetupData->RequiredPartitionDiskSpace = ~0;
|
||||
|
||||
/* Get the 'FreeSysPartDiskSpace' value */
|
||||
if (!SetupGetIntField(&Context, 1, &IntValue))
|
||||
return ERROR_CORRUPT_TXTSETUPSIF;
|
||||
|
||||
pSetupData->RequiredPartitionDiskSpace = (ULONG)IntValue;
|
||||
|
||||
//
|
||||
// TODO: Support "SetupSourceDevice" and "SetupSourcePath" in txtsetup.sif
|
||||
// See CORE-9023
|
||||
//
|
||||
|
||||
/* Search for 'DefaultPath' in the 'SetupData' section */
|
||||
if (SetupFindFirstLineW(*SetupInf, L"SetupData", L"DefaultPath", &Context))
|
||||
{
|
||||
/* Get pointer 'DefaultPath' key */
|
||||
if (!INF_GetData(&Context, NULL, &Value))
|
||||
return ERROR_CORRUPT_TXTSETUPSIF;
|
||||
|
||||
wcscpy(pSetupData->InstallationDirectory, Value);
|
||||
INF_FreeData(Value);
|
||||
}
|
||||
|
||||
return ERROR_SUCCESS;
|
||||
}
|
||||
|
||||
/* EOF */
|
|
@ -32,6 +32,7 @@ extern HANDLE ProcessHeap;
|
|||
#include "filesup.h"
|
||||
#include "fsutil.h"
|
||||
#include "genlist.h"
|
||||
#include "infsupp.h"
|
||||
#include "inicache.h"
|
||||
#include "partlist.h"
|
||||
#include "arcname.h"
|
||||
|
@ -49,4 +50,74 @@ extern HANDLE ProcessHeap;
|
|||
// #define PB (KB*KB*KB*KB*KB)
|
||||
|
||||
|
||||
/* TYPEDEFS *****************************************************************/
|
||||
|
||||
typedef struct _USETUP_DATA
|
||||
{
|
||||
/* SOURCE Paths *****/
|
||||
UNICODE_STRING SourceRootPath;
|
||||
UNICODE_STRING SourceRootDir;
|
||||
UNICODE_STRING SourcePath;
|
||||
|
||||
/* DESTINATION Paths *****/
|
||||
/*
|
||||
* Path to the system partition, where the boot manager resides.
|
||||
* On x86 PCs, this is usually the active partition.
|
||||
* On ARC, (u)EFI, ... platforms, this is a dedicated partition.
|
||||
*
|
||||
* For more information, see:
|
||||
* https://en.wikipedia.org/wiki/System_partition_and_boot_partition
|
||||
* http://homepage.ntlworld.com/jonathan.deboynepollard/FGA/boot-and-system-volumes.html
|
||||
* http://homepage.ntlworld.com/jonathan.deboynepollard/FGA/arc-boot-process.html
|
||||
* http://homepage.ntlworld.com/jonathan.deboynepollard/FGA/efi-boot-process.html
|
||||
* http://homepage.ntlworld.com/jonathan.deboynepollard/FGA/determining-system-volume.html
|
||||
* http://homepage.ntlworld.com/jonathan.deboynepollard/FGA/determining-boot-volume.html
|
||||
*/
|
||||
UNICODE_STRING SystemRootPath;
|
||||
|
||||
/* Path to the installation directory inside the ReactOS boot partition */
|
||||
UNICODE_STRING DestinationPath; /** Equivalent of 'NTOS_INSTALLATION::SystemNtPath' **/
|
||||
UNICODE_STRING DestinationArcPath; /** Equivalent of 'NTOS_INSTALLATION::SystemArcPath' **/
|
||||
UNICODE_STRING DestinationRootPath;
|
||||
|
||||
LONG DestinationDiskNumber;
|
||||
LONG DestinationPartitionNumber;
|
||||
LONG MBRInstallType;
|
||||
|
||||
LONG FormatPartition;
|
||||
LONG AutoPartition;
|
||||
|
||||
WCHAR LocaleID[9];
|
||||
LANGID LanguageId;
|
||||
|
||||
ULONG RequiredPartitionDiskSpace;
|
||||
WCHAR InstallationDirectory[MAX_PATH];
|
||||
} USETUP_DATA, *PUSETUP_DATA;
|
||||
|
||||
// HACK!!
|
||||
extern BOOLEAN IsUnattendedSetup;
|
||||
|
||||
|
||||
/* FUNCTIONS ****************************************************************/
|
||||
|
||||
VOID
|
||||
CheckUnattendedSetup(
|
||||
IN OUT PUSETUP_DATA pSetupData);
|
||||
|
||||
VOID
|
||||
InstallSetupInfFile(
|
||||
IN OUT PUSETUP_DATA pSetupData);
|
||||
|
||||
NTSTATUS
|
||||
GetSourcePaths(
|
||||
OUT PUNICODE_STRING SourcePath,
|
||||
OUT PUNICODE_STRING SourceRootPath,
|
||||
OUT PUNICODE_STRING SourceRootDir);
|
||||
|
||||
ERROR_NUMBER
|
||||
LoadSetupInf(
|
||||
OUT HINF* SetupInf,
|
||||
IN OUT PUSETUP_DATA pSetupData);
|
||||
|
||||
|
||||
/* EOF */
|
||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue