mirror of
https://github.com/reactos/reactos.git
synced 2025-04-21 20:50:29 +00:00
Fix typo: "SourceDiskFiles" -> "SourceDisksFiles"
Add more drivers to load in txtsetup.sif svn path=/trunk/; revision=29996
This commit is contained in:
parent
e03cad60ce
commit
94aa3722c5
2 changed files with 4 additions and 20 deletions
|
@ -11,7 +11,9 @@ Signature = "$ReactOS$"
|
|||
6 = media\fonts
|
||||
7 = bin
|
||||
|
||||
[SourceDiskFiles]
|
||||
[SourceDisksFiles]
|
||||
atapi.sys=,,,,,,x
|
||||
buslogic.sys=,,,,,,x
|
||||
;acpi.sys=,,,,,,x
|
||||
;isapnp.sys=,,,,,,x
|
||||
;pci.sys=,,,,,,x
|
||||
|
|
|
@ -283,9 +283,6 @@ VOID RunLoader(VOID)
|
|||
printf("Failed to get load options\n");
|
||||
return;
|
||||
}
|
||||
#if 0
|
||||
printf("LoadOptions: '%s'\n", LoadOptions);
|
||||
#endif
|
||||
|
||||
/* Set kernel command line */
|
||||
MachDiskGetBootPath(reactos_kernel_cmdline, sizeof(reactos_kernel_cmdline));
|
||||
|
@ -312,13 +309,6 @@ VOID RunLoader(VOID)
|
|||
RegExportBinaryHive (L"\\Registry\\Machine\\HARDWARE", (PVOID)Base, &Size);
|
||||
FrLdrCloseModule (Base, Size);
|
||||
|
||||
#if 0
|
||||
printf("Base: %x\n", Base);
|
||||
printf("Size: %u\n", Size);
|
||||
printf("*** System stopped ***\n");
|
||||
for(;;);
|
||||
#endif
|
||||
|
||||
/* Insert boot disk 2 */
|
||||
if (MachDiskBootingFromFloppy())
|
||||
{
|
||||
|
@ -410,21 +400,13 @@ for(;;);
|
|||
return;
|
||||
}
|
||||
|
||||
/* Load atapi.sys (depends on hardware detection) */
|
||||
if (!LoadDriver(SourcePath, "atapi.sys"))
|
||||
return;
|
||||
|
||||
/* Load buslogic.sys (depends on hardware detection) */
|
||||
if (!LoadDriver(SourcePath, "buslogic.sys"))
|
||||
return;
|
||||
|
||||
/* Load vfatfs.sys (could be loaded by the setup prog!) */
|
||||
if (!LoadDriver(SourcePath, "vfatfs.sys"))
|
||||
return;
|
||||
|
||||
/* Load additional files specified in txtsetup.inf */
|
||||
if (InfFindFirstLine(InfHandle,
|
||||
"SourceDiskFiles",
|
||||
"SourceDisksFiles",
|
||||
NULL,
|
||||
&InfContext))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue